提交时间:2023-11-10 09:16:17
运行 ID: 236
n = int(input()) s = list(map(int, input().split())) count = 0 for c in s: if c >= 85: count += 1 print(count)