# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
477777 | 2021-10-03T16:18:09 Z | PiejanVDC | 뒤집기 (IOI16_reverse) | C++17 | 0 ms | 0 KB |
#include "reverse.h" #include <bits/stdc++.h> //using namespace std; std::vector<int64_t> reverse(std::vector<int64_t>v) { std::reverse(v.begin(),v.end()); return v; }