[백준/파이썬] 1769번

민정·2023년 4월 5일
0

[백준/파이썬]

목록 보기
130/245
post-thumbnail

📍백준 1769번 문제

https://www.acmicpc.net/problem/1769

코드

n = input()
cnt = 0
while (len(n)>1):
    temp = 0
    for i in n:
        temp += int(i)
    n = str(temp)
    cnt += 1
n = int(n)
print(cnt)
if n % 3 == 0 :
    print("YES")
else:
    print("NO")
profile
パㅔバ6ㅇr 덤벼ㄹΓ :-0

0개의 댓글