티스토리 뷰
https://www.acmicpc.net/problem/1094
import sys
X = int(sys.stdin.readline())
binary = bin(X)
tmp = list(map(str, binary))
print(tmp.count('1'))
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 2309 : 일곱 난쟁이 - Python (0) | 2020.04.17 |
---|---|
[백준] 1966 : 프린터 큐 - Python (0) | 2020.04.17 |
[백준] 2455 : 지능형 기차 - Python (0) | 2020.04.16 |
[백준] 2579 : 계단 오르기 - Python (0) | 2020.04.15 |
[백준] 15652 : N과 M (4) - Python (0) | 2020.04.14 |