# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1094503 | AliHasanli | Reversing a Sequence (IOI16_reverse) | C++17 | 22 ms | 6128 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 "reverse.h"
#include<bits/stdc++.h>
using namespace std;
vector<long long> reverse(vector<long long> a)
{
vector<long long>ans;
for(int i=a.size()-1;i>=0;i--)ans.push_back(a[i]);
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |