# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
519228 | 2022-01-26T04:10:51 Z | Ai7081 | Xoractive (IZhO19_xoractive) | C++17 | 1 ms | 284 KB |
#include <bits/stdc++.h> using namespace std; int ask(int i); vector<int> get_pairwise_xor(vector<int> pos); vector<int> guess(int n) { vector<int> ret(n); for (int i=1; i<=n; i++) ret[i-1] = ask(i); return ret; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 200 KB | Output is correct |
2 | Correct | 0 ms | 284 KB | Output is correct |
3 | Correct | 1 ms | 200 KB | Output is correct |
4 | Correct | 0 ms | 200 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 200 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |