Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
75017 sh25_wangtaojie 图像旋转 C++ 通过 0 MS 252 KB 320 2025-12-05 14:59:26

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c[666],x; cin>>a>>b; for(int i=1;i<=a*b;i++){ cin>>x; c[i]=x; } for(int i=1;i<=a;i++){ for(int j=2;j>=0;j--){ cout<<c[i+j*3]<<" "; } cout<<endl; } return 0; }


测评信息: