2686.Raising Bacteria

Time Limit: 1s Memory Limit: 256MB

You are a lover of bacteria. You want to raise some bacteria in a box.

Initially, the box is empty. Each morning, you can put any number of bacteria into the box. And each night, every bacterium in the box will split into two bacteria. You hope to see exactly x bacteria in the box at some moment.

What is the minimum number of bacteria you need to put into the box across those days?

Input Format(From the terminal/stdin)

The only line containing one integer x (1 \le x \le 109).

Output Format(To the terminal/stdout)

The only line containing one integer: the answer.

Sample Input 1

Copy
5
 \n

Sample Output 1

Copy
2
 \n

Sample Input 2

Copy
8
 \n

Sample Output 2

Copy
1
 \n

Hints

For the first sample, we can add one bacterium in the box in the first day morning and at the third morning there will be 4 bacteria in the box. Now we put one more resulting 5 in the box. We added 2 bacteria in the process so the answer is 2.

For the second sample, we can put one in the first morning and in the 4-th morning there will be 8 in the box. So the answer is 1.

Submit

请先 登录

© 2025 FAQs