본문 바로가기
Algorithm./BackJoon

백준 python : 1546 평균

by dev챙 2023. 12. 23.

✔️문제

🗝️ 풀이 및 정답

정답

N = int(input())

arr = list(map(int, input().split()))
max_score = max(arr)

new_arr = []

for i in arr:
    new_arr.append(i/max_score *100)

print(sum(new_arr)/N)

풀이

시험 과목을 리스트로 받기

arr = list(map(int, input().split()))

최대 점수 변수에 담기

max_score = max(arr)

조작한 점수 새 변수에 담기

for i in arr:
    new_arr.append(i/max_score *100)

'Algorithm. > BackJoon' 카테고리의 다른 글

백준 python : 11654 아스키 코드  (2) 2023.12.23
백준 python : 9086 문자열  (1) 2023.12.23
백준 python : 10811 바구니 뒤집기  (1) 2023.12.23
[백준 3052] 나머지  (1) 2023.12.23
[백준 5597] 과제 안 내신 분..?  (1) 2023.12.23