진법 변환(백준)

박종연·2022년 5월 2일
0

알고리즘문제

목록 보기
15/15
import sys
import string
n,b = sys.stdin.readline().split()

list_upper = ['0','1','2','3','4','5','6','7','8','9']
list_upper.extend(list(string.ascii_uppercase))

b = int(b)
n = n [::-1]
res =0
for idx,ele in enumerate(n):
    res += (b**idx)*list_upper.index(ele)
print(res)
n, b = input().split()
print(int(n,int(b)))

내장 int에서도 변환이 가능하다. 파이썬 최고..

profile
eat.sleep.code

0개의 댓글

관련 채용 정보