[Add] solved solutions

This commit is contained in:
2023-03-02 20:59:51 +07:00
parent 48081e0a05
commit 5499ac06c2
42 changed files with 1480 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#include <iostream>
using namespace std;
int main()
{
int t, i, p, a, b;
cin >> t;
for (i = 0; i < t; i++)
{
cin >> p;
b = 0;
a = 2048;
while (a)
{
b = b + p/a;
p = p%a;
a = a/2;
}
cout << b << endl;
}
return 0;
}