提交时间:2023-11-10 09:19:32
运行 ID: 237
n = int(input()) scores = list(map(int, input().split())) count = 0 for score in scores: if score >= 85: count += 1 print(count)