Submission #1102888

#TimeUsernameProblemLanguageResultExecution timeMemory
1102888rahidilbayramliReversing a Sequence (IOI16_reverse)C++17
100 / 100
27 ms5980 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...