문제
풀이 (Python)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | n = 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
'프로그래밍 > Baekjoon' 카테고리의 다른 글
(파이썬) 백준 알고리즘 1110번 (0) | 2018.12.02 |
---|---|
(파이썬) 백준 알고리즘 4344번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 10871번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 10817번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 9498번 (0) | 2018.12.02 |