power-girl0-0

[ 1110 ] 더하기 사이클 본문

백준 알고리즘/python

[ 1110 ] 더하기 사이클

power-girl0-0 2021. 3. 1. 14:00
728x90

n = int(input())
total = n
cnt = 0

while(True):
    a= total//10
    b= total%10
    c=(a+b)%10
    total = (b*10)+c
    cnt += 1
    
    if(n == total):
        print(cnt)
        break
728x90

'백준 알고리즘 > python' 카테고리의 다른 글

[ 2562 ] 최댓값  (0) 2021.03.02
[ 10818 ] 최소, 최대  (0) 2021.03.02
[ 10951 ] A+B - 4  (0) 2021.02.28
[ 10952 ] A+B - 5  (0) 2021.02.28
[ 10871 ] X보다 작은 수  (0) 2021.02.28
Comments