# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
336848 | 2020-12-17T02:24:38 Z | israeladewuyi | 뒤집기 (IOI16_reverse) | C++17 | 42 ms | 5880 KB |
#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 n = v.size(); ll s = 0, e = n - 1; reverse(v.begin(), v.end()); // while(s < e){ // int temp = v[s]; // v[s] = v[e]; // v[e] = temp; // s++; // e--; // } return v; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Correct | 0 ms | 364 KB | Output is correct |
3 | Correct | 0 ms | 364 KB | Output is correct |
4 | Correct | 0 ms | 364 KB | Output is correct |
5 | Correct | 1 ms | 364 KB | Output is correct |
6 | Correct | 1 ms | 384 KB | Output is correct |
7 | Correct | 2 ms | 364 KB | Output is correct |
8 | Correct | 5 ms | 876 KB | Output is correct |
9 | Correct | 13 ms | 2176 KB | Output is correct |
10 | Correct | 42 ms | 5880 KB | Output is correct |