# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
337668 | aris12345678 | Reversing a Sequence (IOI16_reverse) | 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 <bits/stdc++.h>
using namespace std;
const int mxN = 1e5+5;
vector<int64_t> reverse(vector<int64_t> a) {
reverse(a.begin(), a.end());
return a;
}
/*int main() {
ios::sync_with_stdio(false); cin.tie(0);
}*/