Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
140775 李折曦 19选班长 C++ Runtime Error 0 MS 276 KB 275 2025-12-20 12:58:16

Tests(0/10):


Code:

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


Run Info:

*** stack smashing detected ***: ./Main terminated