| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76743 | sh25_zhuwy | 低于平均分成绩 | C++ | Accepted | 0 MS | 252 KB | 329 | 2025-12-19 17:04:43 |
#include<bits/stdc++.h> using namespace std; int main() { int n,sum=0,s=0; cin>>n; int a[n]; for(int i=0;i<n;i++) { cin>>a[i]; sum+=a[i]; } sum/=n; for(int i=0;i<n;i++) { if(a[i]<sum) { s++; } } cout<<s; return 0; }