알고리즘 정복하기!/백준 문제풀이

백준 1546번 Python / Math

by seokii 2022. 2. 8.
728x90
반응형

문제 링크

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

 

1546번: 평균

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

www.acmicpc.net

 

풀이

n = int(input())
scores = list(map(int, input().split()))
high_score = max(scores)
total = 0

for i in scores:
    total += i / high_score * 100

print(total/n)

 

728x90
반응형

'알고리즘 정복하기! > 백준 문제풀이' 카테고리의 다른 글

백준 3502번 Python / Math  (0) 2022.02.08
백준 4344번 Python / Math  (0) 2022.02.08
백준 11720번 Python / Math  (0) 2022.02.08
백준 10818번 Python / Math  (0) 2022.02.08
백준 2577번 Python / Math  (0) 2022.02.08

댓글