Submission #957512

#TimeUsernameProblemLanguageResultExecution timeMemory
957512hirayuu_ojReversing a Sequence (IOI16_reverse)C++17
100 / 100
26 ms5968 KiB
#include "reverse.h" #include<bits/stdc++.h> using namespace std; std::vector<long long> reverse(std::vector<long long> a) { reverse(a.begin(),a.end()); return a; }
#Verdict Execution timeMemoryGrader output
Fetching results...