제출 #241341

#제출 시각아이디문제언어결과실행 시간메모리
241341clairvoyant뒤집기 (IOI16_reverse)C++14
100 / 100
61 ms4216 KiB

#include <bits/stdc++.h>

using namespace std;

vector<long long int>reverse(vector<long long int>a){
	reverse(a.begin(), a.end());
    return a;
}
#Verdict Execution timeMemoryGrader output
Fetching results...