일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DirectX11
- Unreal Engine5
- IFileDialog
- RootMotion
- DeferredRendering
- 티스토리챌린지
- RVO
- baekjoon
- 1563
- C
- 오블완
- Programmers
- const
- algorithm
- 언리얼엔진5
- Frustum
- 2294
- UE5
- 프로그래머스
- winapi
- NRVO
- softeer
- 백준
- UnrealEngine4
- UnrealEngine5
- C++
- 팰린드롬 만들기
- 줄 세우기
- directx
- GeeksForGeeks
- Today
- Total
목록개근상 (2)
Game Develop
https://www.acmicpc.net/problem/1563 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960#include iostream>#include string>#include map>#include vector>#include algorithm>#include math.h>#include queue>#include functional>#include sstream>#include memory.h>#include deque>#include set>#include unordered_map>#include stack>#include numeric..
https://www.acmicpc.net/problem/1563 1563번: 개근상 백준중학교에서는 학기가 끝날 무렵에 출결사항을 보고 개근상을 줄 것인지 말 것인지 결정한다. 이 학교는 이상해서 학생들이 학교를 너무 자주 빠지기 때문에, 개근상을 주는 조건이 조금 독 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 int n; int dp[1001][2][3] = { 0 }; const int mod = 1000000; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> n; dp[1][0][0] ..