728x90
반응형
브루트포스 알고리즘 문제이다.
while 1:
n = input()
if n == '0':
break
s = sum(map(int, list(n)))
i = 11
while 1:
t = int(n)*i
if sum(map(int, list(str(t)))) == s:
print(i)
break
i += 1
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 1159번 농구 경기(python) (0) | 2021.02.17 |
---|---|
백준 알고리즘 2822번 점수 계산(python) (0) | 2021.02.17 |
백준 알고리즘 7595번 Triangles(python) (0) | 2021.02.15 |
백준 알고리즘 6322번 직각 삼각형의 두 변(python) (0) | 2021.02.15 |
백준 알고리즘 6139번 Speed Reading(python) (0) | 2021.02.15 |