본문 바로가기
백준 문제풀이

baekjoon - python - 1546

by winston1214 2020. 8. 21.
반응형

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

 

1546번: 평균

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

www.acmicpc.net

# @Author YoungMinKim
# baekjoon
n=int(input())
score = list(map(int, input().split()))
m = max(score)
new_score=[]
for i in score:
    new_score.append(i/m*100)
print(sum(new_score)/len(new_score))
반응형

'백준 문제풀이' 카테고리의 다른 글

baekjoon - python - 1712  (0) 2020.08.21
baekjoon - python - 1550  (0) 2020.08.21
baekjoon - python - 1417  (0) 2020.08.21
baekjoon - python - 1373  (0) 2020.08.21
baekjoon - python - 1330  (0) 2020.08.21

댓글