728x90
https://www.acmicpc.net/problem/4344
파이썬 문자열포메팅에대해 배울 수 있었음!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import sys
input = sys.stdin.readline
c = int(input())
for i in range(c):
arr = list(map(int, input().split()))
average = sum(arr[1:]) / arr[0]
num = 0
for a in arr[1:]:
if a > average:
num += 1
result = num / arr[0] * 100
print(str("%.3f" % result) + "%")
|
cs |
728x90
'PS > 백준' 카테고리의 다른 글
[백준 1157번 ] 단어 공부 (파이썬/python) (0) | 2021.06.14 |
---|---|
[백준 4673번 ] 셀프 넘버 (파이썬/python) (0) | 2021.06.14 |
[백준 2493번 ] 탑 (파이썬/python) (0) | 2021.06.12 |
[백준 11053번] 가장 긴 증가하는 부분 수열 파이썬/python (0) | 2021.06.10 |
[백준 17135번] 캐슬 디펜스 c++ (0) | 2021.05.18 |