CCF-CSP-2019-09-1小明种苹果

题目链接:http://118.190.20.162/view.page?gpid=T94

思路:模拟,以后模拟题中整数型变量最好定义为long long类型

代码:

#include<bits/stdc++.h>

using namespace std;

int main (){
    int n,m;
    cin>>n>>m;
    int res=1000,no=0,al=0;
    for(int i=1;i<=n;i++){
        int ans,num,atm=0;
        cin>>ans;//这棵树最初的苹果数
        for(int j=0;j<m;j++){
            cin>>num;
            atm+=num;//计算这棵树一共疏果多少
        }
        if(atm<res){//比较并记录较大值和树的序号
            res=atm;
            no=i;
        }
        al+=(ans+atm);
    }
    cout<<al<<" "<<no<<" "<<abs(res);
    return 0;
}
/*
3 3
73 -8 -6 -4
76 -5 -10 -8
80 -6 -15 0

2 2
10 -3 -1
15 -4 0
*/

上一篇:OOSE-1-需求分析(结构化分析/面向对象分析)


下一篇:软件测试--测试设计方法及案例