# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
363523 | BeanZ | Reversing a Sequence (IOI16_reverse) | C++14 | 51 ms | 5996 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// I_Love_LPL
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
const int N = 1e4 + 50;
long long mod = 1e9 + 7;
const int lim = 700;
const int lg = 19;
const long double eps = 1e-6;
ll x[N], y[N];
vector<ll> reverse(vector<ll> a){
reverse(a.begin(), a.end());
return a;
}
/*
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
if (fopen("tests.inp", "r")){
freopen("test.inp", "r", stdin);
freopen("test.ans", "w", stdout);
}
}*/
/*
Ans:
Out:
*/
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |