# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
470028 | 2021-09-02T18:10:37 Z | luciocf | Question (Grader is different from the original contest) (CEOI14_question_grader) | C++14 | 4877 ms | 24072 KB |
#include <bits/stdc++.h> using namespace std; int mask[1010]; bool flag = 0; int encode(int n, int x, int y) { if (!flag) { flag = 1; int ind = 0; for (int i = 0; i < (1<<12); i++) if (__builtin_popcount(i) == 6) mask[++ind] = i; } for (int i = 0; i <= 11; i++) if ((mask[x]&(1<<i)) && (!(mask[y]&(1<<i)))) return i+1; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 4877 ms | 24060 KB | Output is correct - maxh = 12 |
2 | Correct | 4806 ms | 24072 KB | Output is correct - maxh = 12 |