| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 80454 | sh25_zhuwy | 图像旋转 | C++ | Accepted | 0 MS | 248 KB | 342 | 2026-01-04 15:17:46 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; int a[n][m]; for(int i=0;i<n;++i){ for(int j=0;j<m;++j){ cin>>a[i][j]; } } for(int j=0;j<m;++j){ for(int i=n-1;i>=0;--i){ cout<<a[i][j]<<" "; } cout<<endl; } return 0;}