제출 #563172

#제출 시각아이디문제언어결과실행 시간메모리
563172Kanten4205Reversing a Sequence (IOI16_reverse)C++17
100 / 100
35 ms5832 KiB
#include <bits/stdc++.h>
using namespace std;
const long long MOD1 = 1000000007;
const long long MOD2 = 998244353;
typedef long long ll;
typedef pair<ll, ll> P;
const long long INF = 1e17;
vector<ll> reverse(vector<ll> A) {
    reverse(A.begin(), A.end());
    return A;
}
#Verdict Execution timeMemoryGrader output
Fetching results...