728x90
https://www.acmicpc.net/problem/1373
import sys
n = sys.stdin.readline().rstrip()
tmp = int(n, 2)
tmp2 = oct(tmp)
print(tmp2[2:])
비슷한 문제 (https://hgk5722.tistory.com/289)
진수 변환 (https://hgk5722.tistory.com/290)
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 2745 파이썬(python) : 진법 변환 (0) | 2022.08.10 |
---|---|
[백준] 1026 파이썬(python) : 보물 (0) | 2022.08.09 |
[백준] 1212 파이썬(python) : 8진수 2진수 (0) | 2022.08.07 |
[백준] 2747 파이썬(python) : 피보나치 수 (0) | 2022.07.29 |
[백준] 1158 파이썬(python) : 요세푸스 문제 (0) | 2022.07.27 |