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