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
- UnrealEngine4
- 오블완
- UE5
- Unreal Engine5
- 프로그래머스
- IFileDialog
- directx
- RVO
- 1563
- C++
- RootMotion
- GeeksForGeeks
- 2294
- UnrealEngine5
- Programmers
- 백준
- 언리얼엔진5
- const
- DeferredRendering
- Frustum
- 줄 세우기
- softeer
- baekjoon
- C
- DirectX11
- 팰린드롬 만들기
- algorithm
- 티스토리챌린지
- winapi
- NRVO
Archives
- Today
- Total
목록떡 먹는 호랑이 (1)
Game Develop
[Algorithm]Baekjoon 2502번 :: 떡 먹는 호랑이
https://www.acmicpc.net/problem/2502 2502번: 떡 먹는 호랑이 첫줄에 첫 날에 준 떡의 개수 A를 출력하고 그 다음 둘째 줄에는 둘째 날에 준 떡의 개수 B를 출력한다. 이 문제에서 주어진 D, K에 대해서는 항상 정수 A, B (1≤ A ≤ B)가 존재한다. 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 using namespace std; int d, k; pair coefficients[31]; int main() { ios::sync_with_stdio(false); ci..
Algorithm/Baekjoon
2024. 1. 24. 22:36