본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#232 백준 파이썬 [1094] 막대기

https://www.acmicpc.net/problem/1094

 

Solution

X를 이진수로 변환하였을 때, 1의 개수를 출력하는 문제다.

Python Code

print(bin(int(input()))[2:].count('1'))