#include "reverse.h"
#include <vector>
#include <algorithm>
using namespace std;
vector<long long> reverse(vector<long long> a) {
reverse(a.begin(), a.end());
return a;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
204 KB |
Output is correct |
4 |
Correct |
0 ms |
204 KB |
Output is correct |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Correct |
1 ms |
204 KB |
Output is correct |
7 |
Correct |
1 ms |
332 KB |
Output is correct |
8 |
Correct |
4 ms |
588 KB |
Output is correct |
9 |
Correct |
10 ms |
1432 KB |
Output is correct |
10 |
Correct |
32 ms |
3884 KB |
Output is correct |