Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
6470 | 黄宜洋 | 外围元素之和 | C++ | Wrong Answer | 0 MS | 264 KB | 648 | 2025-03-01 14:20:45 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n,m,s=0; cin>>n>>m; int a[21][21]; for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ cin>>a[i][j]; } } for(int j=0;j<m;j++){ s=s+a[0][j]; } for(int i=1;i<=n-2;i++){ s=s+a[i][0]; s=s+a[i][m-1]; } for(int j=0;j<m;j++){ s=s+a[n-1][j]; } cout<<s; return 0; }
------Input------
1 9 7 4 7 2 0 9 7 5 0
------Answer-----
41
------Your output-----
82