We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38658a5 commit 9e86590Copy full SHA for 9e86590
4344.py
@@ -0,0 +1,10 @@
1
+# 평균은 넘겠지
2
+
3
+C = int(input())
4
5
+for _ in range(C):
6
+ line = list(map(int, input().split()))
7
+ N = line[0]
8
+ average = sum(line[1:]) / N
9
+ percent = len([score for score in line[1:] if score > average]) / N * 100
10
+ print(f"{percent:.3f}%")
0 commit comments