# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
375503 | marat0210 | Prosjek (COCI18_prosjek) | C++14 | 1 ms | 492 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()
{
long double n;
cin >>n;
vector <long double> a(n);
for (int i = 0; i < n; ++i) {
cin >>a[i];
}
sort(a.begin(), a.end());
long double av1 = (a[0] + a[1]) / 2;
long double av2 = (a[2] + av1) / 2;
long double av3 = (a[3] + av2) / 2;
if (n == 3) cout <<fixed<<setprecision(7)<<av2<<endl;
else cout <<fixed<<setprecision(7)<<av3<<endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |