Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118178 | 王煜鑫 | 对角线之和 | C++ | Accepted | 9 MS | 276 KB | 300 | 2025-04-26 09:55:28 |
#include<bits/stdc++.h> using namespace std; int a[11][11]; int main(){ int n,sum=0; cin>>n; 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||i+j==n-1) sum+=a[i][j]; } } cout<<sum; return 0; }