https://www.acmicpc.net/problem/11005
시간 1초, 메모리 256MB
input :
output :
조건 :
이때, 우리는 배열 안에 int와 chr 두 가지를 가지고 있기 때문에 join을 사용할 수 없다..
이때문에 typeerror가 발생했다.
import sys
n, b = map(int, sys.stdin.readline().split())
res = []
if n == 0:
res.append(0)
while n != 0:
temp = n % b
if temp < 10:
res.append(temp)
else:
temp += 55
res.append(chr(temp))
n //= b
res.reverse()
for item in res:
print(item, end="")