반응형
SOLUTION
N = int(input())
score = list(map(int, input().split())) # list 형태로 입력받음
M = max(score)
answer = 0
answer += (sum(score) / M*100) / len(score)
print(answer)
'코딩테스트 대비 > BOJ' 카테고리의 다른 글
[Baekjoon/Python] 4153번: 직각삼각형 - 효과는 굉장했다! (0) | 2021.10.07 |
---|---|
[Baekjoon/Python] 1085번: 직사각형에서 탈출 - 효과는 굉장했다! (0) | 2021.10.07 |
[Baekjoon/Python] 11720번: 숫자의 합 - 효과는 굉장했다! (0) | 2021.10.07 |
[Baekjoon/Python] 10809번: 알파벳 찾기 - 효과는 굉장했다! (0) | 2021.10.07 |
[Baekjoon/Python] 8958번: OX퀴즈 - 효과는 굉장했다! (0) | 2021.10.07 |