# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
174619 | 2020-01-06T13:27:46 Z | juggernaut | Xoractive (IZhO19_xoractive) | C++14 | 0 ms | 0 KB |
#include "interactive.h" #include<bits/stdc++.h> using namespace std; #define int long long int vector<int> guess(int n) { vector <int> ans; for (int i = 1; i <= n; i++) { ans.push_back(ask(i)); } return ans; }