L1-068 調和平均 分數 10

Frodnx發表於2024-08-16
// 2'4"
#include <bits/stdc++.h>
using namespace std;
int main()
{
    int n;
    cin >> n;
    long double res = 0;
    for(int i = 1; i <= n; ++ i)
    {
        long double x;
        cin >> x;
        res += 1 / x;
    }
    res /= n;
    cout << fixed << setprecision(2) << 1 / res << endl;
    return 0;
}

相關文章