# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
470028 | 2021-09-02T18:10:37 Z | luciocf | 질문 (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
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4877 ms | 24060 KB | Output is correct - maxh = 12 |
2 | Correct | 4806 ms | 24072 KB | Output is correct - maxh = 12 |