Submission #718258

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