| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 241361 | socho | Reversing a Sequence (IOI16_reverse) | C++14 | 59 ms | 5468 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 <vector>
#include <bits/stdc++.h>
using namespace std;
std::vector<long long> reverse (std::vector<long long> a) {
    vector<long long int> b;
    for (int i=a.size()-1; i>-1; i--) {
        b.push_back(a[i]);
    }
    return b;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
