Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
95851 | 揭伟琦 | 矩阵右移动 | C++ | Wrong Answer | 1 MS | 264 KB | 397 | 2024-11-02 12:25:09 |
# include<iostream> using namespace std; int a[7][7]; int b[7][7]; int main(){ int n,m; cin >>n; for(int i=0;i<=n-1;i++){ for(int j=0;j<=n-1;j++){ cin>>a[i][j]; } } for(int i=0;i<=n-1;i++){ for(int j=0;j<=n-1;j++){ b[i][(j+m)%n]=a[i][j]; } } for(int i=0;i<=n-1;i++){ for(int j=0;j<=n-1;j++){ cout <<b[i][j]<<" "; } cout<<endl; } return 0; }
------Input------
2 3 1 2 3 4 5 6 7 8 9
------Answer-----
2 3 1 5 6 4 8 9 7
------Your output-----
3 1 2 3