# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
569025 | Aurora2005 | Reversing a Sequence (IOI16_reverse) | C++14 | 35 ms | 5784 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;
vector<long long int> reverse(vector<long long int> a){
vector<long long int> res = a;
reverse(res.begin(),res.end());
return res;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |