| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 78812 | sh25_ganzy | 图像旋转 | C++ | Wrong Answer | 0 MS | 252 KB | 360 | 2025-12-27 22:16:12 |
#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 i=n-1;i>=0;i--){ for(int j=0;j<m;j++){ cout<<a[j][i]<<" "; } cout<<endl; } return 0; }