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
- 언리얼엔진5
- C
- 줄 세우기
- 2294
- algorithm
- 팰린드롬 만들기
- directx
- GeeksForGeeks
- Unreal Engine5
- Programmers
- const
- IFileDialog
- Frustum
- DirectX11
- 백준
- RVO
- NRVO
- 오블완
- C++
- 프로그래머스
- 티스토리챌린지
- softeer
- DeferredRendering
- winapi
- baekjoon
- 1563
- UnrealEngine4
- UE5
- UnrealEngine5
- RootMotion
Archives
- Today
- Total
목록Four Squares (1)
Game Develop
[Algorithm] Baekjoon 17626번 : Four Squares
https://www.acmicpc.net/problem/17626 17626번: Four Squares 라그랑주는 1770년에 모든 자연수는 넷 혹은 그 이하의 제곱수의 합으로 표현할 수 있다고 증명하였다. 어떤 자연수는 복수의 방법으로 표현된다. 예를 들면, 26은 52과 12의 합이다; 또한 42 + 32 + 1 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 int dp[50001]; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n = 0; dp[1] = 1; cin >>..
Algorithm/Baekjoon
2022. 10. 25. 00:52