# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
600287 | MilosMilutinovic | Reversing a Sequence (IOI16_reverse) | C++14 | 35 ms | 5888 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.
/**
* author: wxhtzdy
* created: 20.07.2022 18:22:42
**/
#include "reverse.h"
std::vector<long long> reverse(std::vector<long long> a) {
int n = a.size();
std::vector<long long> b(n);
for (int i = 0; i < n; i++) {
b[i] = a[n - i - 1];
}
return b;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |