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
- RVO
- directx
- DirectX11
- const
- Unreal Engine5
- 언리얼엔진5
- algorithm
- UnrealEngine4
- baekjoon
- Frustum
- winapi
- 프로그래머스
- Programmers
- C
- RootMotion
- 오블완
- 팰린드롬 만들기
- 줄 세우기
- C++
- softeer
- 2294
- DeferredRendering
- 티스토리챌린지
- NRVO
- IFileDialog
- 백준
- GeeksForGeeks
- UE5
- 1563
- UnrealEngine5
Archives
- Today
- Total
목록동전 (1)
Game Develop
[Algorithm] Baekjoon 9084번 : 동전
https://www.acmicpc.net/problem/9084 9084번: 동전우리나라 화폐단위, 특히 동전에는 1원, 5원, 10원, 50원, 100원, 500원이 있다. 이 동전들로는 정수의 금액을 만들 수 있으며 그 방법도 여러 가지가 있을 수 있다. 예를 들어, 30원을 만들기 위해서는www.acmicpc.net12345678910111213141516171819202122232425262728293031323334353637383940 int t, n, m;int coins[21] = { 0 }; int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> t; while (..
Algorithm/Baekjoon
2023. 12. 6. 22:59