1092 最好吃的月饼 (20 分)

Posted tonyyy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1092 最好吃的月饼 (20 分)相关的知识,希望对你有一定的参考价值。

#include <bits/stdc++.h>
using namespace std;
#define ll long long
bool cmp(int a,int b){
    return a>b;
}
int main()
{
    int m,n;
    scanf("%d %d",&m,&n);
    int a[m+1]={0};
    int b[m+1]={0};
    for(int i=1;i<=n;i++){
        for(int j=1;j<=m;j++){
            scanf("%d",&a[j]);
            b[j]+=a[j];
        }
    }
    int max1= -1,sign=0;
    for(int i=1;i<=m;i++){
        if(max1<b[i]){
            max1 = b[i];
        }
    }
    cout<<max1<<endl;
    for(int i=1;i<=m;i++){
        if(max1 == b[i]&&sign==0){
            cout<<i;
            sign=1;
        }
        else if(max1 == b[i]&&sign!=0){
            cout<<" "<<i;
        }
    }

    return 0;

}

 

以上是关于1092 最好吃的月饼 (20 分)的主要内容,如果未能解决你的问题,请参考以下文章

PTA basic 1092 最好吃的月饼 (20 分) c++语言实现(g++)

PAT乙级1092 最好吃的月饼 (20 分)

P1092 最好吃的月饼

PTA 1092 最好吃的月饼

最好吃的月饼!用Python爬取了某宝1166家月饼进行可视化分析!

1020 月饼 (25 分)