# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
470025 | 2021-09-02T18:03:11 Z | luciocf | 질문 (CEOI14_question_grader) | C++14 | 3035 ms | 24344 KB |
#include <bits/stdc++.h> using namespace std; int mask[1010]; bool flag; 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 | Incorrect | 3035 ms | 24036 KB | wrong answer |
2 | Incorrect | 2497 ms | 24344 KB | wrong answer |