# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
956575 | 2024-04-02T07:31:25 Z | DeltaStruct | Reversing a Sequence (IOI16_reverse) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> #include "reverse.h" using namespace std; int64[] reverse(int64[] a){ reverse(begin(a),end(a)); return a; }