Problem1141--统计

1141: 统计

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

期中考刚过去,老师改好试卷要统计及格率,由于太麻烦让你帮忙计算

Input

有多组测试数据,输入k表示几组;

输入人数n,表示有n个人考试,接下来一行输入n个数据Ci (0<=ci<=100)表示每个人的成绩

Output

输出及格率,结果保留三位有效数字,每组数据之间用空行隔开

Sample Input Copy

1
10
59 42 90 100 60 74 52 80 48 55

Sample Output Copy

50.000%

Source/Category