728x90
반응형
단순 수학 문제이다.
n = int(input())
res = ''
t = 0
while 9**t <= n:
t += 1
res = ''
for i in range(t-1, -1, -1):
res += str(n//(9**i))
n = n%(9**i)
print(res)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 14545번 Square(python) (0) | 2021.03.03 |
---|---|
백준 알고리즘 14568번 2017 연세대학교 프로그래밍 경시대회(python) (0) | 2021.03.03 |
백준 알고리즘 14489번 치킨 두 마리 (...)(python) (0) | 2021.03.03 |
백준 알고리즘 14215번 세 막대(python) (0) | 2021.03.03 |
백준 알고리즘 13877번 이건 무슨 진법이지?(python) (0) | 2021.03.03 |