# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
711708 |
2023-03-17T11:30:03 Z |
pcc |
Popcount (COCI19_popcount) |
C++14 |
|
1 ms |
212 KB |
#include <bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int n,k;
cin>>n>>k;
cout<<n-1<<'\n';
for(int i = 1;i<n;i++){
cout<<"A=(((A&(1<<"<<i<<"))>>"<<i<<")+(A^(A&"<<"(1<<"<<i<<"))))\n";
}
// for(int j = 0;j<(1<<n);j++){
// int A = j;
// for(int i = 1;i<n;i++){
// A=((A&(1<<i))>>i)+(A^(A&(1<<i)));
// }
// assert(A == __builtin_popcount(j));
// }
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Wrong command format. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Incorrect number of commands. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Accepted. |
2 |
Incorrect |
0 ms |
212 KB |
Incorrect number of commands. |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Incorrect number of commands. |
2 |
Halted |
0 ms |
0 KB |
- |