def dec_to_bin(N):
global binary
if N == 0:
return
Q, R = divmod(N, 2)
binary.append(str(R))
dec_to_bin(Q)
N = int(input())
binary = []
dec_to_bin(N)
print ("".join(list(reversed(binary))), end='')
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 10869번 사칙연산 (C++) (0) | 2022.06.17 |
---|---|
[백준] 10866번 덱 (파이썬) (0) | 2022.06.17 |
[백준] 10828번 스택 (파이썬) (0) | 2022.06.17 |
[백준] 10826번 피보나치 수 4 (파이썬) (0) | 2022.06.17 |
[백준] 10819번 차이를 최대로 (파이썬) (0) | 2022.06.17 |