[백준] 11005. 바구니 순서 바꾸기
10진법 수 N이 주어진다. 이 수를 B진법으로 바꿔 출력하는 프로그램을 작성하시오.
10진법을 넘어가는 진법은 숫자로 표시할 수 없는 자리가 있다. 이런 경우에는 다음과 같이 알파벳 대문자를 사용한다.
A: 10, B: 11, ..., F: 15, ..., Y: 34, Z: 35
Python의 표준 라이브러리 중 문자열 관련 데이터를 다루기 위한 string
모듈이 있는데 해당 모듈에 주로 사용되는 특정 문자열들을 모아둔 데이터가 있다.
해당 데이터를 사용하면 아래와 같이 쉽게 문제를 풀어낼 수 있다.
import string
char = string.digits + string.ascii_uppercase
def convert(num: int, base: int) -> str:
res = []
while num:
num, r = divmod(num, base)
res.append(char[r])
return "".join(res[::-1])
n, b = [int(x) for x in input().split()]
print(convert(n, b))
Tip
string
모듈에 주로 사용되는 특정 문자열들을 모아둔 데이터 중 대표적인 예시는 아래와 같다.
import string
print(f"{string.digits=}")
print(f"{string.ascii_letters=}")
print(f"{string.printable=}")
print(f"{string.punctuation=}")
print(f"{string.whitespace=}")
string.digits='0123456789'
string.ascii_letters='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
string.printable='0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~ \t\n\r\x0b\x0c'
string.punctuation='!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~'
string.whitespace=' \t\n\r\x0b\x0c'