Submission #337670

#TimeUsernameProblemLanguageResultExecution timeMemory
337670aris12345678Reversing a Sequence (IOI16_reverse)C++14
100 / 100
41 ms5868 KiB
#include <bits/stdc++.h> using namespace std; const int mxN = 1e5+5; vector<long long> reverse(vector<long long> a) { reverse(a.begin(), a.end()); return a; } /*int main() { ios::sync_with_stdio(false); cin.tie(0); }*/
#Verdict Execution timeMemoryGrader output
Fetching results...