Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
236 郭** 计算成绩优秀的人数 Python3 通过 28 MS 3364 KB 144 2023-11-10 09:16:17

Tests(5/5):


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


测评信息: