Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
6408 邓小龙 外围元素之和 C++ Wrong Answer 0 MS 264 KB 738 2025-02-22 16:05:00

Tests(6/10):


Code:

#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,a[21][21]; cin>>n>>m; for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ cin>>a[i][j]; } } int s=0; for(int j=0;j<m;j++)//加第一行的所有数 s+=a[0][j]; for(int j=0;j<m;j++)//加最后一行 s+=a[n-1][j]; for(int i=1;i<n-1;i++)//加第一列,排除了第一行和最后一行 s+=a[i][0]; for(int i=1;i<n-1;i++) s+=a[i][m-1]; cout<<s<<endl; return 0; }


Run Info:

------Input------
1 9 7 4 7 2 0 9 7 5 0
------Answer-----
41
------Your output-----
82