Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- UE5
- baekjoon
- DirectX11
- C
- RootMotion
- C++
- const
- 티스토리챌린지
- 언리얼엔진5
- 백준
- GeeksForGeeks
- NRVO
- IFileDialog
- winapi
- algorithm
- 오블완
- Programmers
- Unreal Engine5
- UnrealEngine5
- 프로그래머스
- softeer
- RVO
- 줄 세우기
- DeferredRendering
- 2294
- 1563
- UnrealEngine4
- 팰린드롬 만들기
- Frustum
- directx
Archives
- Today
- Total
목록수 나누기 게임 (1)
Game Develop
[Algorithm]Baekjoon 27172번 : 수 나누기 게임
https://www.acmicpc.net/problem/27172 27172번: 수 나누기 게임 《보드게임컵》을 준비하다 지친 은하는 보드게임컵 참가자들을 경기장에 몰아넣고 결투를 시키는 게임 《수 나누기 게임》을 만들었습니다. 《수 나누기 게임》의 규칙은 다음과 같습니다. www.acmicpc.net 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 using namespace std; int n; bool isPicked[1000001] = { 0 }; int scores[1000001] = { 0 }; vec..
Algorithm/Baekjoon
2024. 3. 8. 18:38