Submission #716574

#TimeUsernameProblemLanguageResultExecution timeMemory
716574ngano_upat_naReversing a Sequence (IOI16_reverse)C++17
100 / 100
32 ms5804 KiB
#include "reverse.h"
#include "bits/stdc++.h"
using namespace std;

vector<long long> reverse(vector<long long> a) {
    reverse(a.begin(),a.end());
    return a;
}   
#Verdict Execution timeMemoryGrader output
Fetching results...