# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1041376 | 2024-08-02T00:38:50 Z | arnavsrivastava0123 | Reversing a Sequence (IOI16_reverse) | C++14 | 1 ms | 348 KB |
#include <bits/stdc++.h> #define all(x) x.begin(), x.end() #define sz(x) x.size() #define pb push_back #define ll long long #define ld long double #define mp make_pair #define F first #define S second using namespace std; vector<ll> reverse(vector<ll> a){ int n = a.size(); vector<ll> b(n); for(int i = n - 1, j = 0; i >= 0;i--){ b[j++] = a[j]; } return b; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |