문제
풀이 (Python)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | n = input() if int(n) < 10: n = n + '0' cnt = 0 sum = 0 tmp = n while True: cnt += 1 sum = int(tmp[0]) + int(tmp[1]) if sum < 10: new = tmp[1]+str(sum) else : new = tmp[1] + str(sum)[1] if new == n: break else: tmp = new print (cnt) | cs |
키워드 (Keyword)
문제 출처
'프로그래밍 > Baekjoon' 카테고리의 다른 글
(파이썬) 백준 알고리즘 1152번 (0) | 2018.12.02 |
---|---|
(파이썬) 백준 알고리즘 1065번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 4344번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 1546번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 10871번 (0) | 2018.12.02 |