반응형
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
- 기술면접
- dfs
- 오퍼레터
- BFS
- Docker
- OFFSET
- 백준
- boj #19237 #어른 상어
- 파라메트릭
- 소프티어
- softeer
- compose
- incr
- upper_bound
- 처우협의
- 매개변수탐색
- 6987
- @P0
- 경력
- 처우산정
- 성적평가
- msSQL
- Kafka
- 이분탐색
- 연결요소
- 백트래킹
- 퇴사통보
- BOJ
- 물채우기
- 13908
Archives
- Today
- Total
기술 블로그
4673번 셀프 넘버 본문
728x90
반응형
기본적인 구현 문제다.
문제 그대로 구현하면 된다.
https://www.acmicpc.net/problem/4673
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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | #include <stdio.h> #include <stdlib.h> #include <malloc.h> #include <string.h> int num[10001] = { -1, }; void selfNumber() { for (int i = 1; i < 10000; i++) { if (i < 10) { int next = 2 * i; if (next <= 10000) num[next] = 1; } else if (i < 100) { int ten = i / 10; int one = i % 10; int next = i + ten + one; if (next <= 10000) num[next] = 1; } else if (i < 1000) { int hundred = i / 100; int ten = (i % 100) / 10; int one = i % 10; int next = i + hundred + ten + one; if (next <= 10000) num[next] = 1; } else { int thousand = i / 1000; int hundred = (i % 1000) / 100; int ten = (i % 100) / 10; int one = i % 10; int next = i + thousand + hundred + ten + one; if (next <= 10000) num[next] = 1; } } } int main(void) { memset(num, -1, sizeof(num)); selfNumber(); for (int i = 1; i <= 10000; i++) { if (num[i] == -1) printf("%d\n", i); } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
13225번 Divisors (0) | 2018.10.14 |
---|---|
13226번 Divisors Again (0) | 2018.10.14 |
2473번 세 용액 (0) | 2018.10.11 |
10871번 X보다 작은 수 (0) | 2018.10.10 |
1157번 단어 공부 (0) | 2018.10.09 |