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
- Frustum
- winapi
- C
- GeeksForGeeks
- 1563
- const
- 백준
- Programmers
- baekjoon
- 오블완
- UE5
- 2294
- RootMotion
- Unreal Engine5
- 언리얼엔진5
- DirectX11
- IFileDialog
- UnrealEngine4
- C++
- DeferredRendering
- softeer
- 프로그래머스
- RVO
- directx
- 팰린드롬 만들기
- algorithm
- 티스토리챌린지
- UnrealEngine5
- 줄 세우기
- NRVO
Archives
- Today
- Total
목록돌 게임 3 (1)
Game Develop
[Algorithm]Baekjoon 9657번 :: 돌 게임3
https://www.acmicpc.net/problem/9657 9657번: 돌 게임 3 상근이가 게임을 이기면 SK를, 창영이가 게임을 이기면 CY을 출력한다. 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 int n; bool dp[1001] = { false,true,false,true,true }; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> n; for (int i = 5; i
Algorithm/Baekjoon
2024. 1. 18. 21:49