Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
129603 | 叶航帅 | 18高于平均分的学生数量 | Python3 | Accepted | 61 MS | 3776 KB | 191 | 2025-08-29 15:08:58 |
m = int(input()) a = input().split() s = 0 for i in range(m): s = s + int(a[i]) avg = s/m people =0 for i in range(m): if int(a[i])>avg: people +=1 print(people)