https://www.acmicpc.net/problem/4673
def d(n):
result=int(n)
for i in list(str(n)):
result+=int(i)
return result
num=[]
for i in range(10000):
result=d(i+1)
num.append(result)
for i in range(10000):
if i+1 not in num:
print(i+1)
'알고리즘 > 백준' 카테고리의 다른 글
백준 11654: 아스키 코드 (Python) (0) | 2021.08.25 |
---|---|
백준 1065: 한수 (Python) (0) | 2021.08.24 |
백준 4344: 평균은 넘겠지 (Python) (0) | 2021.08.24 |
백준 3052: 나머지 (Python) (0) | 2021.08.24 |
백준 2577: 숫자의 개수 (Python) (0) | 2021.08.24 |