티스토리 뷰
https://www.acmicpc.net/problem/1110
import sys
N = int(sys.stdin.readline())
new = N
count = 0
while(new != N or count == 0):
one = new % 10
ten = new // 10
s = one + ten
new = int(str(one)+str(s%10))
count += 1
print(count)
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 2798 : 블랙잭 - Python (0) | 2020.03.13 |
---|---|
[백준] 1149 : RGB거리 - Python (0) | 2020.03.12 |
[백준] 9461 : 파도반 수열 - Python (0) | 2020.03.12 |
[백준] 1904 : 01타일 - Python (0) | 2020.03.11 |
[백준] 1541 : 잃어버린 괄호 - Python (0) | 2020.03.11 |