# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
222515 | 2020-04-13T08:35:10 Z | jamielim | Popcount (COCI19_popcount) | C++14 | 5 ms | 384 KB |
#include <bits/stdc++.h> using namespace std; const long long X=42; const long long Y=47; int main(){ string start="A=(((A-(A&" + to_string((1LL<<Y)-1) + "))>>" + to_string(Y-9) + ")+((A&1)"; for(long long i=1;i<Y-1;i++){ start+="+(((A&" + to_string(1LL<<i) + ")>>" + to_string(i) + ")"; } start+="+((A&" + to_string(1LL<<(Y-1)) + ")>>" + to_string(Y-1) + ")"; for(int i=-1;i<Y-1;i++)start+=")"; //printf("%d %s\n",(int)start.length(),start.c_str()); string rep="A=((A&511)+(((A-(A&" + to_string((1LL<<(X+9))-1) + "))>>" + to_string(X) + ")"; for(long long i=9;i<X+8;i++){ rep+="+(((A&" + to_string(1LL<<i) + ")>>" + to_string(i) + ")"; } rep+="+((A&" + to_string(1LL<<(X+8)) + ")>>" + to_string(X+8) + ")"; for(int i=7;i<X+8;i++)rep+=")"; //printf("%d %s\n",(int)rep.length(),rep.c_str()); printf("%s\n",start.c_str()); int n,k; scanf("%d%d",&n,&k); n-=Y; while(n>0){ printf("%s\n",rep.c_str()); n-=X; } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 256 KB | Wrong output format. |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 384 KB | Wrong output format. |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 256 KB | Wrong output format. |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 256 KB | Wrong output format. |
2 | Halted | 0 ms | 0 KB | - |