# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
563170 | 2022-05-16T12:33:29 Z | Kanten4205 | Reversing a Sequence (IOI16_reverse) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> using namespace std; const long long MOD1 = 1000000007; const long long MOD2 = 998244353; typedef long long ll; typedef pair<ll, ll> P; const long long INF = 1e17; vector<ll> reverse(vector<ll> &A) { reverse(A.begin(), A.end()); return A; }