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