0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 23:45:25 +00:00

P5082 成绩

R52203603
This commit is contained in:
Baoshuo Ren 2021-06-30 08:17:02 +08:00 committed by Baoshuo Ren
parent 1ca38e37c8
commit e9d383c241
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,21 @@
#include <bits/stdc++.h>
using namespace std;
long long n, a[10000005], b[10000005], c[10000005], a1, b1, c1;
int main() {
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i];
a1 += a[i];
}
for (int i = 0; i < n; i++) {
cin >> b[i];
c[i] = a[i] - b[i];
b1 += b[i];
c1 += c[i];
}
cout << fixed << setprecision(6) << 1.00 * (a1 * 3 - b1 * 2) / c1 << endl;
return 0;
}