Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
122265 王子涵 19选班长 C++ Accepted 1 MS 276 KB 293 2025-06-15 09:38:30

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a[11]={0},n,max=0,xb; cin>>n; for(int i=1;i<=n;i++) { for(int j=1;j<=3;j++) { cin>>xb; a[xb]++; } } for(int i=1;i<=n;i++) if(a[i]>max) { max=a[i]; xb=i; } cout<<xb; return 0; }