#include "reverse.h"
#include <vector>
#include <bits/stdc++.h>
using namespace std;
std::vector<long long> reverse (std::vector<long long> a) {
vector<long long int> b;
for (int i=a.size()-1; i>-1; i--) {
b.push_back(a[i]);
}
return b;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
256 KB |
Output is correct |
2 |
Correct |
4 ms |
256 KB |
Output is correct |
3 |
Correct |
5 ms |
256 KB |
Output is correct |
4 |
Correct |
5 ms |
256 KB |
Output is correct |
5 |
Correct |
5 ms |
384 KB |
Output is correct |
6 |
Correct |
5 ms |
384 KB |
Output is correct |
7 |
Correct |
6 ms |
512 KB |
Output is correct |
8 |
Correct |
10 ms |
948 KB |
Output is correct |
9 |
Correct |
21 ms |
2180 KB |
Output is correct |
10 |
Correct |
59 ms |
5468 KB |
Output is correct |