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
- 팰린드롬 만들기
- TObjectPtr
- UnrealEngine5
- 프로그래머스
- 2294
- directx
- NRVO
- 줄 세우기
- C
- algorithm
- baekjoon
- 언리얼엔진5
- 백준
- GeeksForGeeks
- DirectX11
- UE5
- const
- Unreal Engine5
- Programmers
- IFileDialog
- 티스토리챌린지
- C++
- 오블완
- UnrealEngine4
- 1563
- RVO
- RootMotion
- softeer
- Frustum
- winapi
Archives
- Today
- Total
목록소수&팰린드롬 (1)
Game Develop
[Algorithm] Baekjoon 1747번 : 소수&팰린드롬
https://www.acmicpc.net/problem/1747 1747번: 소수&팰린드롬 어떤 수와 그 수의 숫자 순서를 뒤집은 수가 일치하는 수를 팰린드롬이라 부른다. 예를 들어 79,197과 324,423 등이 팰린드롬 수이다. 어떤 수 N (1 ≤ N ≤ 1,000,000)이 주어졌을 때, N보다 크거나 같고, 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 44 int n; bool isPrimeNum(int n) { for (int i = 2; i * i n; if (n == 1) ++n; while..
Algorithm/Baekjoon
2023. 9. 9. 23:39