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
- 줄 세우기
- winapi
- UnrealEngine5
- algorithm
- softeer
- Programmers
- 1563
- C
- RootMotion
- IFileDialog
- 백준
- const
- Frustum
- Unreal Engine5
- 프로그래머스
- 오블완
- baekjoon
- DeferredRendering
- 티스토리챌린지
- 언리얼엔진5
- C++
- NRVO
- GeeksForGeeks
- UE5
- directx
- 2294
- 팰린드롬 만들기
- DirectX11
- RVO
- UnrealEngine4
Archives
- Today
- Total
목록1699 (1)
Game Develop
[Algorithm]Baekjoon 1699 : 제곱수의 합
https://www.acmicpc.net/problem/1699 1699번: 제곱수의 합 어떤 자연수 N은 그보다 작거나 같은 제곱수들의 합으로 나타낼 수 있다. 예를 들어 11=32+12+12(3개 항)이다. 이런 표현방법은 여러 가지가 될 수 있는데, 11의 경우 11=22+22+12+12+12(5개 항)도 가능하다 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 int n; int dp[100001] = { 0 }; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> n; memset..
Algorithm/Baekjoon
2023. 10. 17. 17:29