# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1089740 | vibeslayer | Reversing a Sequence (IOI16_reverse) | C++17 | 22 ms | 5976 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> arr) {
reverse(begin(arr), end(arr));
return arr;
}
//int main() {
// int n; cin >> n;
// vector<long long> arr(n);
// for (long long &x : arr) cin >> x;
//
// arr = reverse(arr);
//
// for (auto x : arr) cout << x << " ";
// cout << endl;
//}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |