# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1041373 | 2024-08-02T00:33:10 Z | arnavsrivastava0123 | 뒤집기 (IOI16_reverse) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> #define all(x) x.begin(), x.end() #define sz(x) x.size() #define pb push_back #define ll long long #define ld long double #define mp make_pair #define F first #define S second using namespace std; void solve(){ int n; cin >> n; ll 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 == 0]; } } int main(){ ios::sync_with_stdio(false); cin.tie(0); solve(); }