SMALL
문제 출처
풀이 코드
def d(n):
a=[str(n)] + list(str(n))
return sum(list(map(int,a)))
not_s_n = []
num=[x for x in range(1,10001)]
for i in range(1, 10001):
temp = d(i)
not_s_n.append(temp)
self_num = sorted(list(set(num)-set(not_s_n)))
for sel in self_num:
print(sel)
LIST
'알고리즘-python > 백준 문제' 카테고리의 다른 글
[백준/11720/파이썬(Python3)] 숫자의 합 (0) | 2021.06.29 |
---|---|
[백준/11654/파이썬(Python3)] 아스키코드 (0) | 2021.06.29 |
[백준/1110/파이썬(Python3)] 더하기 싸이클 (0) | 2021.06.28 |
[백준/1065/파이썬(Python3)] 한 수 구하기 (0) | 2021.06.28 |
[백준 / 파이썬(Python3) / #14502 ] 연구소 (0) | 2020.07.07 |