| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76380 | sh25_shenpy | 低于平均分成绩 | C++ | Accepted | 0 MS | 248 KB | 270 | 2025-12-19 14:48:24 |
#include <bits/stdc++.h> using namespace std; int s[100]; int main() { int n,x=0,m=0; cin>>n; for(int i=0;i<n;++i){ cin>>s[i]; x+=s[i];} x=1.0*x/n; for(int j=0;j<n;j++){ if(s[j]<x) m++;} cout<<m<<endl; return 0; }