Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118176 | 王煜鑫 | 矩阵对角线 | C++ | Accepted | 10 MS | 656 KB | 376 | 2025-04-26 09:50:15 |
#include<bits/stdc++.h> using namespace std; int a[1001][1001]; int main(){ int n,m; cin>>n>>m; for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ cin>>a[i][j]; } } for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ if(i==j) a[i][j]=a[i][j]+m; if(i+j==n-1&&!(i==j)) a[i][j]=a[i][j]+m; printf("%5d",a[i][j]); } cout<<endl; } return 0; }