백준 1546번 문제 파이썬 코드 답안
- CS/BOJ
- 2021. 3. 22.
import sys
t = int(sys.stdin.readline().rstrip())
a = []
a = list(map(int,sys.stdin.readline().split()))
max = max(a)
new_list = []
for i in a :
new_list.append(i/max*100)
print(sum(new_list)/t)
'CS > BOJ' 카테고리의 다른 글
백준 1890 파이썬 문제 풀이 (0) | 2021.06.23 |
---|---|
백준 8958 파이썬 코드 답안 (0) | 2021.03.22 |
3052번 문제 (0) | 2021.03.22 |
백준 2577번 파이썬 코드 답안 (0) | 2021.03.22 |
백준 10871 파이썬 코드 답안 (0) | 2021.03.22 |