[Baekjoon] 백준 1546번 Python

방선생·2025년 1월 11일

Baekjoon

목록 보기
6/24

백준 1546번

sub = int(input())
score = list(map(float,input().split()))

Max = max(score)

for i in range(sub):
  score[i] = (score[i] / Max) * 100

print(sum(score) / sub)
profile
AI & Robotics

0개의 댓글