보안을 그리다, 훈이

[Baekjoon/Python3] 1546번 평균 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 1546번 평균

HooNeee 2020. 12. 3. 00:57

[Baekjoon/Python3] 1546번 평균

 

www.acmicpc.net/problem/1546

 

1546번: 평균

첫째 줄에 시험 본 과목의 개수 N이 주어진다. 이 값은 1000보다 작거나 같다. 둘째 줄에 세준이의 현재 성적이 주어진다. 이 값은 100보다 작거나 같은 음이 아닌 정수이고, 적어도 하나의 값은 0보

www.acmicpc.net

 

N = int(input()) #과목수
list_grade = list(map(int, input().split()))
M = max(list_grade) #최고점
for i in range(N):
    list_grade[i] = list_grade[i] / M * 100 # / : float, // : int
avg = sum(list_grade) / N   # sum 함수
print('%.2f' %avg)
Comments