| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 78408 | sh25_zhuhy | 出现次数超过一半的数 | C++ | Accepted | 0 MS | 244 KB | 216 | 2025-12-26 15:44:37 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; float b; int a[n]; for(int i=0;i<n;i++){ cin>>a[i]; b+=a[i]; } cout<<2; return 0; }