Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
78810 sh25_ganzy 图像旋转 C++ 输出超限 0 MS 248 KB 334 2025-12-27 22:15:08

Tests(0/1):


#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;n--){ for(int j=0;j<m;j++){ cout<<a[j][i]; } } return 0; }


测评信息: