# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
60125 | 2018-07-23T17:11:54 Z | theknife2001 | Parrots (IOI11_parrots) | C++17 | 10 ms | 2240 KB |
#include "encoder.h" #include "encoderlib.h" #include <bits/stdc++.h> using namespace std; void encode(int N, int M[]) { for(int i=0;i<N;i++) { for(int j=0;j<8;j++) { if(M[i]&(1<<j)) { if(i>15) { send(j+(i-16)*10); send(j+(i-16)*10); } else { send(j+i*10); } } } } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 1008 KB | Error : Output is wrong |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 1752 KB | Error : Output is wrong |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 2128 KB | Error : Output is wrong |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 2128 KB | Error : Output is wrong |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 7 ms | 2176 KB | Error : Output is wrong |
2 | Incorrect | 10 ms | 2208 KB | Error : Output is wrong |
3 | Incorrect | 8 ms | 2240 KB | Error : Output is wrong |
4 | Incorrect | 5 ms | 2240 KB | Error : Bad encoded integer |
5 | Incorrect | 5 ms | 2240 KB | Error : Bad encoded integer |
6 | Incorrect | 4 ms | 2240 KB | Error : Bad encoded integer |
7 | Incorrect | 7 ms | 2240 KB | Error : Bad encoded integer |