#include<bits/stdc++.h>
using namespace std;
vector<long long int> reverse(vector<long long int> a){
vector<long long int> res = a;
reverse(res.begin(),res.end());
return res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
300 KB |
Output is correct |
3 |
Correct |
1 ms |
304 KB |
Output is correct |
4 |
Correct |
0 ms |
212 KB |
Output is correct |
5 |
Correct |
1 ms |
212 KB |
Output is correct |
6 |
Correct |
1 ms |
308 KB |
Output is correct |
7 |
Correct |
2 ms |
468 KB |
Output is correct |
8 |
Correct |
4 ms |
852 KB |
Output is correct |
9 |
Correct |
11 ms |
2012 KB |
Output is correct |
10 |
Correct |
35 ms |
5784 KB |
Output is correct |