# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1231798 | countless | Reversing a Sequence (IOI16_reverse) | C++20 | 20 ms | 3984 KiB |
#include "reverse.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
vector<ll> reverse(vector<ll> a) {
reverse(a.begin(), a.end());
return a;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |