# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
746583 | 2023-05-22T21:13:09 Z | finn__ | 질문 (CEOI14_question_grader) | C++17 | 0 ms | 0 KB |
struct precalc { int p[924]; constexpr precalc() { int l = 0; for (int i = 0; i < 1 << 12; ++i) if (__builtin_popcount(i) == 6) p[l++] = i; } }; precalc z; int encode(int n, int x, int y) { return __builtin_ctz(z.p[x] ^ z.p[y]) + 1; }