Skip to content

Commit 9e86590

Browse files
committed
[#7] Feat: Add 평균은 넘겠지
1 parent 38658a5 commit 9e86590

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

4344.py

+10
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)