from functools import reduce
i=int(input())
arr=[]
arr[0:i]=map(int,input().split())
arr.sort()
k=0
for x in arr:
arr[k]=x/arr[i-1]*100
k+=1
o=reduce(lambda x,y:x+y,arr)
print(o/i)
'알고리즘 > 백준' 카테고리의 다른 글
백준-1157번(단어 공부)-python3 (0) | 2023.11.24 |
---|---|
백준-1152번(단어의 개수)-python3 (0) | 2023.11.24 |
백준-1149번(RGB거리)-python3 (3) | 2023.11.24 |
백준-1085번(직사각형에서 탈출)-python3 (0) | 2023.11.23 |
백준-1065번(한수)-python3 (0) | 2023.11.23 |