제출 #539168

#제출 시각아이디문제언어결과실행 시간메모리
539168astoria뒤집기 (IOI16_reverse)C++14
100 / 100
33 ms5796 KiB
#include "reverse.h" #include <vector> #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); }
#Verdict Execution timeMemoryGrader output
Fetching results...