코딩테스트 준비/백준

[백준] 1212번 8진수 2진수 - 파이썬(Python)

youjin86 2021. 8. 26. 11:35

https://www.acmicpc.net/problem/1212

 

1212번: 8진수 2진수

첫째 줄에 8진수가 주어진다. 주어지는 수의 길이는 333,334을 넘지 않는다.

www.acmicpc.net

 

문제

 

21.03.13 접근법

 

8진수를 10진수로 변환 후,  format함수를 이용해 2진수로 변환

 

 

21.03.13 코드

n=int(input(),8)
print(format(n,'b'))

 

21.08.26 접근법

 

8진수를 10진수로 변환 후,  format함수를 이용해 2진수로 변환

 

 

21.08.26 코드

print(format(int(input(),8),'b'))