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
- UnrealEngine5
- UnrealEngine4
- RootMotion
- Unreal Engine5
- GeeksForGeeks
- 백준
- 줄 세우기
- baekjoon
- Frustum
- DeferredRendering
- 프로그래머스
- directx
- 1563
- softeer
- 2294
- const
- UE5
- winapi
- 팰린드롬 만들기
- RVO
- IFileDialog
- C++
- algorithm
- NRVO
- 언리얼엔진5
- DirectX11
- Programmers
- 오블완
- C
- 티스토리챌린지
Archives
- Today
- Total
목록쉬운 계단 수 (1)
Game Develop
[Algorithm] Baekjoon 10844번 : 쉬운 계단 수
https://www.acmicpc.net/problem/10844 10844번: 쉬운 계단 수 첫째 줄에 정답을 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 #define MOD 1000000000 int dp[101][10] = { 0 }; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n; cin >> n; for (int i = 0; i
Algorithm/Baekjoon
2023. 4. 30. 05:41