import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.stdio; void main() { auto N = readln.chomp.to!int; auto P = readln.split.map!(x => x.to!real / 1000).array; auto Q = readln.split.map!(x => x.to!real / 100).array; struct Hoge{real p; int i;} auto pq = new BinaryHeap!(Array!Hoge, "a.p < b.p"); foreach (i; 0..N) pq.insert(Hoge(P[i] * Q[i], i)); real ans = 0; const int TRY = 10^^6; foreach (i; 1..TRY+1) { auto t = pq.front; ans += i * t.p; pq.replaceFront(Hoge(t.p * (1 - Q[t.i]), t.i)); } writefln("%.9f", ans); }