Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 해커
- 장고vscode
- web
- rev-basic-3
- 파이썬
- 해킹
- 리버싱
- 코로나바이러스
- AndroidOS
- csaw 2018
- 파이썬웹
- djangovscode
- dreamhack
- 코로나
- webhacking.kr문제풀이
- vscode
- csaw
- Django
- 취약점점검
- 웹해킹
- rev-basic-6
- jango
- 바이러스
- 백준
- reversing
- 모세포
- 장고
- 해킹문제
- rev-basic-4
- basic4
Archives
- Today
- Total
Kilkat
백준 4344번 python 본문
n = int(input())
for i in range(n):
nums = list(map(int, input().split()))
avg = sum(nums[1:]) / nums[0]
cnt = 0
for scores in nums[1:]:
if scores > avg:
cnt += 1
rate = cnt / nums[0] * 100
print(str(format(rate, '.3f')+'%'))
'Programming > python' 카테고리의 다른 글
TOCTOU PoC (0) | 2025.01.15 |
---|---|
백준 2941번 python (0) | 2021.03.17 |
백준 2741번 python (0) | 2021.03.17 |
백준 2577번 python (0) | 2021.03.17 |
백준 2446번 python (0) | 2021.03.17 |
Comments