반응형
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 |
Tags
- 연결요소
- 소프티어
- upper_bound
- boj #19237 #어른 상어
- Kafka
- 13908
- 기술면접
- 물채우기
- BFS
- 6987
- dfs
- softeer
- BOJ
- 파라메트릭
- incr
- 이분탐색
- OFFSET
- Docker
- @P0
- 오퍼레터
- msSQL
- compose
- 매개변수탐색
- 처우협의
- 퇴사통보
- 성적평가
- 처우산정
- 경력
- 백준
- 백트래킹
Archives
- Today
- Total
기술 블로그
6378번 디지털 루트 본문
728x90
반응형
https://www.acmicpc.net/problem/6378
24 ~ 25번 째 코드 실수 주의.
왜 안 되나 몇 분 동안 계속 봤더니, 초보적인 실수를 하였다.
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 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; int digit(string s) { int sum = 0; for (int i = 0; i < s.length(); i++) { sum += s[i] - '0'; } if (sum < 10) return sum; else return digit(to_string(sum)); // else digit(to_string(sum)); 이 아니다. 주의하자. } int main(void) { string s; while (1) { cin >> s; if (s[0] == '0') break; cout << digit(s) << '\n'; } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
4641번 Doubles (0) | 2018.12.03 |
---|---|
10451번 순열 사이클 (0) | 2018.12.03 |
6679번 싱기한 네자리 숫자 (0) | 2018.12.03 |
3460번 이진수 (0) | 2018.12.03 |
10101번 삼각형 외우기 (0) | 2018.11.29 |