Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
19649 | 桑迪 | 评最优志愿者 | C++ | 解答错误 | 40 | 0 MS | 248 KB | 366 | 2021-05-19 08:07:32 |
#include<bits/stdc++.h> using namespace std; int n,k,p[101],po,hi; 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<=n;i++){ if(h[i]) cout<<i<<" "; } return 0; }