# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
524481 | Mr_Husanboy | Xoractive (IZhO19_xoractive) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "interactive.h"
#include<bit/stdc++.h>
using namespace std;
vector<int> guess(int n) {
vector<int> ans;
for(int i=1;i<=n;i++){
ans.push_back(ask(i));
}return ans;
}