# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
595829 | jophyyjh | Reversing a Sequence (IOI16_reverse) | C++14 | 30 ms | 5808 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.
/**
* Simple
*
* Time Complexity: O(n)
* Implementation 1
*/
#include <bits/stdc++.h>
#include "reverse.h"
std::vector<long long> reverse(std::vector<long long> a) {
std::reverse(a.begin(), a.end());
return a;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |