백준 / 평균 / 1546번 / Python
·
코딩테스트(프로그래머스 & 백준)/백준-Python
*문제 출처는 백준에 있습니다. 문제 제목: 평균 / 1546번 (브론즈 1단계)문제 사이트: https://www.acmicpc.net/problem/1546 문제 설명 나의 풀이 s = int(input())score = list(map(int, input().split()))max_score = max(score)for i in range(s): score[i] = score[i] / max_score * 100print(sum(score) / s)※ 알아야 할 것 여러 개를 입력 받을 경우 split()으로 잘라야 한다.