https://www.acmicpc.net/problem/1212
문제
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'))
'코딩테스트 준비 > 백준' 카테고리의 다른 글
[백준] 17103번 골드바흐 파티션 - 파이썬(Python) (1) | 2021.08.30 |
---|---|
[백준] 2089번 -2진수 - 파이썬(Python) (0) | 2021.08.27 |
[백준] 1373번 2진수 8진수 - 파이썬(Python) (0) | 2021.08.26 |
[백준] 17087번 숨바꼭질 6 - 파이썬(Python) (0) | 2021.08.23 |
[백준] 9613번 GCD 합 - 파이썬(Python) (0) | 2021.08.23 |