SMALL
문제 출처
풀이 코드
n=num=int(input())
new_num=0
rnd=0
while True:
rnd+=1
a = num%10
b = sum(list(map(int, str(num)))) % 10
new_num=a*10+b
if new_num==n:
break
else: num=new_num
print(rnd)
LIST
'알고리즘-python > 백준 문제' 카테고리의 다른 글
[백준/11720/파이썬(Python3)] 숫자의 합 (0) | 2021.06.29 |
---|---|
[백준/11654/파이썬(Python3)] 아스키코드 (0) | 2021.06.29 |
[백준/1065/파이썬(Python3)] 한 수 구하기 (0) | 2021.06.28 |
[백준/4673/파이썬(Python3)] 셀프 넘버 (0) | 2021.06.27 |
[백준 / 파이썬(Python3) / #14502 ] 연구소 (0) | 2020.07.07 |