| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 678263 | Alcabel | Xoractive (IZhO19_xoractive) | C++17 | 1 ms | 292 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 <bits/stdc++.h>
#include <interactive.h>
using namespace std;
vector<int> guess(int n) {
vector<int> ans(n);
for (int i = 1; i <= n; ++i) {
ans[i - 1] = ask(i);
}
return ans;
}
/*
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int T = 1;
// cin >> T;
while (T--) {
int n;
cin >> n;
vector<int> ans = guess(n);
for (const int& x : ans) {
cout << x << ' ';
}
cout << '\n';
}
return 0;
}
*/
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
