Submission #493258

#TimeUsernameProblemLanguageResultExecution timeMemory
493258MenotimProsjek (COCI18_prosjek)Cpython 3
50 / 50
14 ms2800 KiB
n = int(input())
notas = sorted([int(input()) for i in range(n)])
media = notas.pop(0)
while notas:
    media = (media + notas.pop(0))/2
print(media)
#Verdict Execution timeMemoryGrader output
Fetching results...