본문 바로가기
프로그래밍/Baekjoon

(파이썬) 백준 알고리즘 1546번

by J_Remind 2018. 12. 2.

문제


풀이 (Python)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
= int(input())
 
score = list(map(float, input().split()))
 
max = 0
for i in range(n):
    if score[i] > max:
        max = score[i]
 
for i in range(n):
    score[i] = score[i]/max*100
 
sum = 0
for i in range(n):
    sum += score[i]
 
print(sum/n)
cs

문제 출처

https://www.acmicpc.net/problem/1546