본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#383 백준 파이썬 [17618] 신기한 수

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

 

PYTHON CODE

#pypy로 풀이

result = 0

for A in range(1, int(input())+1):
    B = 0
    temp = A
    while temp:
        B += temp % 10
        temp //= 10
    if A % B == 0:
        result += 1
        
print(result)