# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
337672 | 2020-12-21T11:34:21 Z | aris12345678 | 뒤집기 (IOI16_reverse) | C++14 | 1 ms | 492 KB |
#include <bits/stdc++.h> using namespace std; const int mxN = 1e5+5; vector<long long> reverse(vector<long long> a) { int i = 0, j = a.size()-1; while(i < j) { swap(a[i], a[j]); ++i, ++j; } return a; } /*int main() { ios::sync_with_stdio(false); cin.tie(0); }*/
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 492 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |