# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
493258 | Menotim | Prosjek (COCI18_prosjek) | Cpython 3 | 14 ms | 2800 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
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 time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |