結果

問題 No.210 探し物はどこですか?
ユーザー roiti46roiti46
提出日時 2015-10-06 00:25:43
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 77,072 KB
実行使用メモリ 82,784 KB
最終ジャッジ日時 2024-07-20 01:33:33
合計ジャッジ時間 16,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
78,720 KB
testcase_01 AC 953 ms
81,120 KB
testcase_02 WA -
testcase_03 AC 86 ms
77,056 KB
testcase_04 AC 105 ms
78,528 KB
testcase_05 AC 109 ms
78,464 KB
testcase_06 AC 87 ms
77,056 KB
testcase_07 AC 104 ms
78,080 KB
testcase_08 AC 129 ms
78,904 KB
testcase_09 AC 132 ms
78,848 KB
testcase_10 AC 128 ms
78,848 KB
testcase_11 AC 130 ms
79,232 KB
testcase_12 AC 140 ms
78,976 KB
testcase_13 AC 139 ms
78,976 KB
testcase_14 AC 138 ms
78,848 KB
testcase_15 AC 146 ms
78,976 KB
testcase_16 AC 137 ms
79,172 KB
testcase_17 AC 134 ms
78,892 KB
testcase_18 AC 200 ms
79,360 KB
testcase_19 AC 203 ms
79,004 KB
testcase_20 AC 194 ms
78,988 KB
testcase_21 AC 197 ms
78,848 KB
testcase_22 AC 200 ms
79,140 KB
testcase_23 AC 168 ms
79,776 KB
testcase_24 AC 161 ms
79,256 KB
testcase_25 AC 162 ms
79,232 KB
testcase_26 AC 162 ms
79,232 KB
testcase_27 AC 181 ms
79,616 KB
testcase_28 AC 594 ms
79,892 KB
testcase_29 AC 577 ms
80,308 KB
testcase_30 AC 580 ms
80,280 KB
testcase_31 AC 600 ms
79,960 KB
testcase_32 AC 583 ms
79,888 KB
testcase_33 AC 203 ms
79,360 KB
testcase_34 AC 208 ms
79,248 KB
testcase_35 AC 202 ms
79,668 KB
testcase_36 AC 208 ms
79,104 KB
testcase_37 AC 207 ms
79,296 KB
testcase_38 AC 1,036 ms
82,784 KB
testcase_39 AC 1,040 ms
82,508 KB
testcase_40 AC 1,066 ms
82,508 KB
testcase_41 AC 994 ms
82,532 KB
testcase_42 AC 1,037 ms
82,392 KB
testcase_43 AC 79 ms
75,648 KB
testcase_44 AC 80 ms
75,776 KB
testcase_45 AC 84 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n = int(raw_input())
p = map(float, raw_input().split())
q = map(float, raw_input().split())
q = [q[i] / 100. for i in xrange(n)]

que = [[-p[i] * q[i], i] for i in xrange(n)]
heapq.heapify(que)
_ans, ans = -1.0, 0.0
i = 1
while ans - _ans > 1e-2:
    _ans = ans
    pq, j = heapq.heappop(que)
    ans += -i * pq
    p[j] *= (1.0 - q[j])
    heapq.heappush(que, [-p[j] * q[j], j])
    i += 1
print "%.10f" % (ans / 1000.)
0