#include "reverse.h"
#include <bits/stdc++.h>
using namespace std;
std::vector<long long> reverse(std::vector<long long> a) {
reverse(a.begin(), a.end());
return a;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
292 KB |
Output is correct |
3 |
Correct |
1 ms |
288 KB |
Output is correct |
4 |
Correct |
1 ms |
204 KB |
Output is correct |
5 |
Correct |
1 ms |
204 KB |
Output is correct |
6 |
Correct |
1 ms |
204 KB |
Output is correct |
7 |
Correct |
2 ms |
428 KB |
Output is correct |
8 |
Correct |
5 ms |
844 KB |
Output is correct |
9 |
Correct |
13 ms |
2060 KB |
Output is correct |
10 |
Correct |
39 ms |
5828 KB |
Output is correct |