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
- baekjoon
- 언리얼엔진5
- 오블완
- C
- C++
- winapi
- UnrealEngine4
- 2294
- softeer
- Unreal Engine5
- 티스토리챌린지
- RVO
- 백준
- UnrealEngine5
- 1563
- algorithm
- 줄 세우기
- const
- directx
- UE5
- Frustum
- 프로그래머스
- GeeksForGeeks
- RootMotion
- TObjectPtr
- IFileDialog
- 팰린드롬 만들기
- NRVO
- DirectX11
- Programmers
Archives
- Today
- Total
목록2225 (1)
Game Develop
[Algorithm] Baekjoon 2225번 : 합분해
https://www.acmicpc.net/problem/2225 2225번: 합분해 첫째 줄에 답을 1,000,000,000으로 나눈 나머지를 출력한다. 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 int dp[201][201] = { 0 }; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, k; cin >> n >> k; for (int i = 0; i
Algorithm/Baekjoon
2023. 4. 24. 01:42