반응형 12121 baekjoon - python - 1212 https://www.acmicpc.net/problem/1212 1212번: 8진수 2진수 첫째 줄에 8진수가 주어진다. 주어지는 수의 길이는 333,334을 넘지 않는다. www.acmicpc.net # @Author YoungMinKim # baekjoon print(bin(int(input(), 8))[2:]) 원래 초기코드는... # N=list(input()) # ten=0 # tmp=[] # for i in range(len(N)): # ten+=int(N[-(i+1)])*(8**i) # while ten!=0: # tmp.append(ten%2) # ten=ten//2 # result='' # for i in range(len(tmp)): # result+=str(tmp[-(i+1)]) #.. 2020. 8. 21. 이전 1 다음 반응형