#include "reverse.h"
#include <bits/stdc++.h>
using namespace std;
#define long long long
vector<long> reverse(vector<long> a) {
reverse(a.begin(), a.end());
return a;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
248 KB |
Output is correct |
2 |
Correct |
3 ms |
488 KB |
Output is correct |
3 |
Correct |
2 ms |
492 KB |
Output is correct |
4 |
Correct |
2 ms |
492 KB |
Output is correct |
5 |
Correct |
3 ms |
536 KB |
Output is correct |
6 |
Correct |
2 ms |
596 KB |
Output is correct |
7 |
Correct |
5 ms |
840 KB |
Output is correct |
8 |
Correct |
9 ms |
1212 KB |
Output is correct |
9 |
Correct |
20 ms |
2564 KB |
Output is correct |
10 |
Correct |
75 ms |
7096 KB |
Output is correct |