Submission #292452

#TimeUsernameProblemLanguageResultExecution timeMemory
2924527_7_7Prosjek (COCI18_prosjek)C++17
50 / 50
1 ms384 KiB
#include <bits/stdc++.h>

using namespace std;

int main()
{
    ios_base::sync_with_stdio(false);

    int n;
    cin >> n;
    vector<double> a(n);
    for(auto &x: a) cin >> x;

    sort(a.rbegin(), a.rend());
    while((int)a.size() > 1){
        double x = a.back();
        a.pop_back();
        double y = a.back();
        a.pop_back();
        a.push_back((x + y) / 2.0);
    }
    cout << fixed << a.back() << "\n";
}

#Verdict Execution timeMemoryGrader output
Fetching results...