반응형
문제 정보
제출 코드
def selfNum(num):
tmp = str(num)
total = 0
for s in tmp:
total += int(s)
return num+total
n = 1
self_num = []
while(True):
tmp = selfNum(n)
self_num.append(tmp)
if(n>10000):
break
n += 1
self_num = list(set(self_num))
for i in range(1, 10000):
try:
self_num.index(i)
except:
print(i)
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 11654번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 1065번 Python (0) | 2021.10.03 |
[백준 알고리즘] 15596번 Python (0) | 2021.10.03 |
[백준 알고리즘] 4344번 Python (0) | 2021.10.03 |
[백준 알고리즘] 8958번 Python (0) | 2021.10.03 |
댓글