제출 #522008

#제출 시각아이디문제언어결과실행 시간메모리
522008tabr뒤집기 (IOI16_reverse)C++17
100 / 100
32 ms5792 KiB
#include <bits/stdc++.h>
using namespace std;
#ifdef tabr
#include "library/debug.cpp"
#else
#define debug(...)
#endif

vector<long long> reverse(vector<long long> a) {
    reverse(a.begin(), a.end());
    return a;
}

#ifdef tabr
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    return 0;
}
#endif
#Verdict Execution timeMemoryGrader output
Fetching results...