728x90
반응형
SMALL
divide = int(input())
grade = list(map(int, input().split(" ")))
total,average = 0,0
for i in range(divide):
total += grade[i] / max(grade) * 100
average = total / divide
print(average)
728x90
반응형
LIST
'백준문제 > 브론즈 5' 카테고리의 다른 글
백준) 2525번 - python (1) | 2024.02.11 |
---|---|
백준) 2395번 - python (0) | 2024.02.10 |
백준) 2163번 - python (0) | 2024.02.09 |
백준) 1152번 - python (0) | 2024.02.07 |
백준) 1037번 - python (0) | 2024.02.06 |