# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
292452 | 7_7_7 | Prosjek (COCI18_prosjek) | C++17 | 1 ms | 384 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.
#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 time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |