| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1300129 | lovezah | 뒤집기 (IOI16_reverse) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
using namespace std;
int main(){
int N;cin>>N;
vector<int>A(N);
for(int i=0;i<N;i++) cin>>A[i];
for(int i=N-1;i>=0;i--) cout<<A[i]<<" \n"[i==N-1];
}
