Codeforces 579A Raising bacteria

Source: Internet
Author: User

A. Raising bacteria

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 would split into the bacteria. You hope to see exactly x bacteria in the box at some moment.

What's the minimum number of bacteria you need-put into the box across those days?

Input

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

Output

The only line containing one integer:the answer.

Sample Test (s) Input
5
Output
2
Input
8
Output
1
Note

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

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

1#include <cstdio>2#include <cstdlib>3#include <algorithm>4 using namespacestd;5 intMain ()6 {7     intx,ans=1;8scanf"%d",&x);9      while(x!=1)Ten     { One         if(x&1) ans++; Ax>>=1; -     } -printf"%d\n", ans); the     return 0; -}

Codeforces 579A Raising bacteria

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.