| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 23988 | gs14004 | Reversing a Sequence (IOI16_reverse) | C++11 | 39 ms | 5120 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>
std::vector<long long> reverse (std::vector<long long> a) {
    std::vector<long long> r;
    for(int i=a.size()-1; i>=0; i--){
        r.push_back(a[i]);
    }
    return r;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
