fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. int t;
  6. cin >> t;
  7. while (t--) {
  8. int n;
  9. cin >> n;
  10. cout << __builtin_popcount(n) << endl;
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5268KB
stdin
4
3
10
1
20
stdout
2
2
1
2