import sys
input = sys.stdin.readline
def get_binary(X):
if X == 0:
return
Q, R = divmod(X, 2)
binary.append(R)
get_binary(Q)
binary.reverse()
X = int(input())
binary = []
get_binary(X)
print (sum(binary))
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 1152번 단어의 개수 (C++) (0) | 2022.03.11 |
---|---|
[백준] 1110번 더하기 사이클 (C++) (0) | 2022.03.11 |
[백준] 1085번 직사각형에서 탈출 (파이썬) (0) | 2022.03.11 |
[백준] 1065번 한수 (C++) (0) | 2022.03.11 |
[백준] 1026번 보물 (파이썬) (0) | 2022.03.11 |