| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 137127 | 梁乃元 | 逆序输出数组 | C++ | Accepted | 100 | 0 MS | 268 KB | 228 | 2024-03-09 17:35:29 |
# include <bits/stdc++.h> using namespace std ; int main ( ) { unsigned long long n ; cin >> n ; for ( int i = n ; i >= 1 ; i -- ) { unsigned long long l = pow ( 2 , i ) ; cout << l << endl ; } return 0 ; }