Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- JavaScript
- C
- graph
- programmers
- sorting
- dfs
- BASIC
- 따라하면서 배우는 C언어
- BFS
- 생활코딩
- udemy
- web
- 백준
- 인프런
- C언어
- 정수론
- Cleancode
- Python
- 따라하며 배우는 C언어
- greedy
- server
- BOJ
- 따배씨
- Algorithm
- DP
- Math
- php
- Algospot
- String
- 종만북
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 1212 / 8진수 2진수 / Python 파이썬 본문
[BOJ] 1212 / 8진수 2진수 / Python 파이썬
https://www.acmicpc.net/problem/1212
풀이
8진수를 2진수로 변환하는 문제이다.
8진수의 한자리를 2진수의 3자리로 변환하면 된다.
eights = input()
res = ""
for i in range(len(eights)):
n = int(eights[i])
tmp = ""
while n != 0:
tmp += str(n % 2)
n //= 2
if i != 0:
while len(tmp) < 3:
tmp = tmp+"0"
res += tmp[::-1]
if not res:
print(0)
else:
print(res)
\
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 11576 / Base Conversion / Python 파이썬 (0) | 2021.06.04 |
---|---|
[BOJ] 2745 / 진법 변환 / Python 파이썬 (0) | 2021.06.01 |
[BOJ] 1373 / 2진수 8진수 / Python 파이썬 (0) | 2021.06.01 |
[BOJ] 11005 / 진법 변환 2 / Python 파이썬 (0) | 2021.05.30 |
[BOJ] 9613 / GCD 합 / Python 파이썬 (0) | 2021.05.30 |
Comments