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
- 안드로이드
- unreal
- 운영체제
- 웅진씽크빅
- 이득우
- UI 자동화
- 프로그래머스
- 재귀
- 게임개발공모전
- 구현
- 인프런
- fsm
- DFS
- 개발일지
- lower_bound
- 게임개발
- BFS
- 알고리즘
- 백준
- binary_search
- 유한상태기계
- 유니티
- 너비우선탐색
- unity
- 이분탐색
- c++
- 시리얼라이제이션
- c#
- upper_bound
- 언리얼
Archives
- Today
- Total
목록백준 #4673번 #셀프넘버 #C++ (1)
초고교급 희망
[백준][C++] 4673번 셀프 넘버
#include using namespace std; int d(int n) { int num = n; while (n != 0) { num += n % 10; n = n / 10; } return num; } int main() { bool a[10001] = { false }; for (int i = 1; i < 10001; i++) { int x = d(i); if (x < 10001) a[x] = true; } for (int j = 1; j < 10001; j++) { if (!a[j]) cout
Algorithm/Baekjoon
2021. 6. 30. 16:30