Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
117508 | 刘佳宇 | 对角线之和 | C++ | Accepted | 1 MS | 284 KB | 343 | 2025-04-19 11:30:33 |
#include<bits/stdc++.h> using namespace std; int a[101][101]; 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; }