Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
19651 | 桑迪 | 评最优志愿者 | C++ | 通过 | 100 | 0 MS | 248 KB | 376 | 2021-05-19 08:17:57 |
#include<bits/stdc++.h> using namespace std; int n,k,p[101],po,hi; int f; bool h[101]; int main(){ cin>>n>>k; for(int i=1;i<=k;i++){ for(int j=1;j<=n;j++){ cin>>po; p[j]+=po; } } for(int i=1;i<=n;i++){ if(p[i]>hi) hi=p[i],memset(h,0,sizeof(h)); if(!(p[i]-hi)) h[i]=1; } for(int i=1;i<=55;i++){ if(h[i]) cout<<i<<" "; } return 0; }