提交时间:2021-05-19 08:17:57
运行 ID: 19651
#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; }