728x90
반응형
단순 구현 문제이다.
N = int(input())
cnt = 0
for i in range(1, N+1):
t = sum([int(c) for c in str(i)])
if i % t == 0:
cnt += 1
print(cnt)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 18247번 겨울왕국 티켓 예매(python) (0) | 2021.03.01 |
---|---|
백준 알고리즘 17945번 통학의 신(python) (0) | 2021.03.01 |
백준 알고리즘 17614번 369(python) (0) | 2021.03.01 |
백준 알고리즘 17356번 욱 제(python) (0) | 2021.03.01 |
백준 알고리즘 17210번 문문문(python) (0) | 2021.03.01 |