# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
477777 | 2021-10-03T16:18:09 Z | PiejanVDC | Reversing a Sequence (IOI16_reverse) | C++17 | 0 ms | 0 KB |
#include "reverse.h" #include <bits/stdc++.h> //using namespace std; std::vector<int64_t> reverse(std::vector<int64_t>v) { std::reverse(v.begin(),v.end()); return v; }