1724: 计算成绩优秀的人数

Memory Limit:64 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

现有一个班一门课程考试的分数,请统计其中成绩为优秀的人数。成绩为优秀的要求是分数大于等于85。

Input

第一行1个整数n,表示分数的个数。(0 < n ≤ 100, ) 第二行n个正整数,表示每一个分数,每个分数小于等于100。

Output

输出一个整数,表示成绩为优秀的人数。

Sample Input Copy

10
85 70 99 90 78 55 100 62 88 84

Sample Output Copy

5

Source/Category