제출 #336849

#제출 시각아이디문제언어결과실행 시간메모리
336849israeladewuyi뒤집기 (IOI16_reverse)C++17
0 / 100
2 ms384 KiB
#include <bits/stdc++.h>
using namespace std;
 
typedef long long ll;
typedef vector<ll> vi;
typedef vector<string> vs;
#define PB push_back
#define pb pop_back
const unsigned int M = 1000000007;


vi reverse(vi v){
	ll s = 0, e = v.size() - 1;
	
	while(s < e){
		int temp = v[s];
		v[s] = v[e];
		v[e] = temp;
		s++;
		e--;
	}
	return v;
}
#Verdict Execution timeMemoryGrader output
Fetching results...