結果

問題 No.210 探し物はどこですか?
ユーザー roiti46roiti46
提出日時 2015-10-06 00:35:17
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 377 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 76,904 KB
実行使用メモリ 89,336 KB
最終ジャッジ日時 2024-07-20 01:35:13
合計ジャッジ時間 20,589 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
78,592 KB
testcase_01 AC 1,132 ms
81,456 KB
testcase_02 TLE -
testcase_03 AC 98 ms
77,696 KB
testcase_04 AC 115 ms
78,080 KB
testcase_05 AC 119 ms
77,952 KB
testcase_06 AC 98 ms
77,056 KB
testcase_07 AC 117 ms
78,592 KB
testcase_08 AC 137 ms
78,848 KB
testcase_09 AC 142 ms
78,720 KB
testcase_10 AC 137 ms
78,720 KB
testcase_11 AC 138 ms
78,848 KB
testcase_12 AC 141 ms
78,720 KB
testcase_13 AC 148 ms
78,720 KB
testcase_14 AC 149 ms
78,848 KB
testcase_15 AC 144 ms
78,720 KB
testcase_16 AC 145 ms
79,232 KB
testcase_17 AC 144 ms
78,848 KB
testcase_18 AC 220 ms
78,720 KB
testcase_19 AC 225 ms
78,720 KB
testcase_20 AC 215 ms
78,720 KB
testcase_21 AC 221 ms
79,232 KB
testcase_22 AC 220 ms
78,848 KB
testcase_23 AC 181 ms
79,232 KB
testcase_24 AC 169 ms
79,232 KB
testcase_25 AC 178 ms
79,232 KB
testcase_26 AC 177 ms
79,232 KB
testcase_27 AC 201 ms
79,360 KB
testcase_28 AC 686 ms
80,364 KB
testcase_29 AC 674 ms
79,992 KB
testcase_30 AC 678 ms
79,852 KB
testcase_31 AC 695 ms
79,976 KB
testcase_32 AC 675 ms
80,056 KB
testcase_33 AC 231 ms
79,796 KB
testcase_34 AC 234 ms
79,420 KB
testcase_35 AC 226 ms
79,832 KB
testcase_36 AC 244 ms
79,364 KB
testcase_37 AC 229 ms
79,412 KB
testcase_38 AC 1,193 ms
82,896 KB
testcase_39 AC 1,228 ms
82,848 KB
testcase_40 AC 1,253 ms
83,224 KB
testcase_41 AC 1,167 ms
83,112 KB
testcase_42 AC 1,209 ms
82,732 KB
testcase_43 AC 90 ms
75,392 KB
testcase_44 AC 91 ms
75,648 KB
testcase_45 AC 97 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n = int(raw_input())
p = map(int, raw_input().split())
q = map(int, raw_input().split())

que = [[-p[i] * q[i] * 1.0 / 100000.0, i] for i in xrange(n)]
heapq.heapify(que)
ans = 0.0
i = 1
while 1:
    pq, j = heapq.heappop(que)
    ans += -i * pq
    if -i * pq < 0.000001: break
    heapq.heappush(que, [pq * (100 - q[j]) / 100, j])
    i += 1
print "%.10f" % ans
0