# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1102886 | 2024-10-19T07:54:29 Z | rahidilbayramli | 뒤집기 (IOI16_reverse) | C++17 | 1 ms | 336 KB |
#include "reverse.h" #include<bits/stdc++.h> using namespace std; vector<long long> reverse(vector<long long> a) { reverse(a.begin(), a.end()); return vector<long long>(a.size()); }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 336 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |