Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
237 阿** 计算成绩优秀的人数 Python3 通过 31 MS 3368 KB 150 2023-11-10 09:19:32

Tests(5/5):


n = int(input()) scores = list(map(int, input().split())) count = 0 for score in scores: if score >= 85: count += 1 print(count)


测评信息: