6 条题解
-
0
#include<bits/stdc++.h> using namespace std; int main() { int a[101][101]; int x=0,y=0; int n; cin>>n; for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { cin>>a[i][j]; if(i==j) { x+=a[i][j]; } } } for(int i=1;i<=n;i++) { for(int j=n;j>=1;j--) { for(int l=0;l<=n;l++) { if(i-l==1&&j+l==n) { if(i==j&&n%2!=0) { } else { y+=a[i][j]; } } } } } cout<<x+y; return 0; }
信息
- ID
- 2167
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 4
- 标签
- 递交数
- 175
- 已通过
- 105
- 上传者