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 |
Tags
- 언리얼엔진5
- 백준
- Frustum
- baekjoon
- Programmers
- TObjectPtr
- UE5
- 티스토리챌린지
- 1563
- UnrealEngine5
- Unreal Engine5
- 프로그래머스
- winapi
- IFileDialog
- 오블완
- const
- softeer
- DirectX11
- NRVO
- 줄 세우기
- RVO
- RootMotion
- directx
- GeeksForGeeks
- C
- algorithm
- 2294
- C++
- UnrealEngine4
- 팰린드롬 만들기
Archives
- Today
- Total
목록14916 (1)
Game Develop
[Algorithm]Baekjoon 14916 :: 거스름돈
https://www.acmicpc.net/problem/14916 14916번: 거스름돈 첫째 줄에 거스름돈 액수 n(1 ≤ n ≤ 100,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 int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; if (n == 1 || n == 3) { cout
Algorithm/Baekjoon
2023. 11. 15. 15:50