Submission #635273

#TimeUsernameProblemLanguageResultExecution timeMemory
635273ZeroProsjek (COCI18_prosjek)C++17
50 / 50
1 ms324 KiB
#include <bits/stdc++.h>
#include <string>
#define int long long

using namespace std;
const int MOD = 1e9 + 7;

signed main(){
    cin.tie(0)->sync_with_stdio(0);
    int n; cin >> n;
    deque <int> a(n);
    for(int i=0; i < n; i++) cin >> a[i];
    sort(a.begin(),a.end());
    double k = a[0];
    for(int i=1; i < n; i++){
        k = (k + a[i]) / 2;
    }
    cout << fixed << setprecision(6) << k;

    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...