Submission #370394

#TimeUsernameProblemLanguageResultExecution timeMemory
370394casperwangXoractive (IZhO19_xoractive)C++14
6 / 100
1 ms364 KiB
#include "interactive.h" #include <bits/stdc++.h> using namespace std; #define debug(args) kout("[ " + string(#args) + " ]", args) void kout() { cerr << endl; } template <class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ',kout(b...); } template <class T> void pary(T L, T R) { while (L != R) cerr << *L << " \n"[++L==R]; } vector<int> guess(int n) { vector <int> ans; for (int i = 1; i <= n; i++) { ans.push_back(ask(i)); } return ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...