結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
79,020 KB
testcase_01 AC 1,111 ms
81,380 KB
testcase_02 TLE -
testcase_03 AC 92 ms
77,312 KB
testcase_04 AC 113 ms
78,080 KB
testcase_05 AC 114 ms
78,464 KB
testcase_06 AC 93 ms
77,084 KB
testcase_07 AC 110 ms
78,080 KB
testcase_08 AC 133 ms
78,848 KB
testcase_09 AC 134 ms
78,848 KB
testcase_10 AC 132 ms
78,848 KB
testcase_11 AC 131 ms
79,232 KB
testcase_12 AC 138 ms
78,976 KB
testcase_13 AC 143 ms
79,488 KB
testcase_14 AC 136 ms
79,276 KB
testcase_15 AC 142 ms
79,124 KB
testcase_16 AC 136 ms
79,484 KB
testcase_17 AC 137 ms
79,232 KB
testcase_18 AC 214 ms
78,720 KB
testcase_19 AC 217 ms
79,232 KB
testcase_20 AC 213 ms
79,232 KB
testcase_21 AC 214 ms
78,848 KB
testcase_22 AC 214 ms
78,976 KB
testcase_23 AC 196 ms
79,232 KB
testcase_24 AC 163 ms
79,360 KB
testcase_25 AC 169 ms
79,360 KB
testcase_26 AC 167 ms
79,616 KB
testcase_27 AC 193 ms
79,232 KB
testcase_28 AC 667 ms
80,020 KB
testcase_29 AC 665 ms
79,916 KB
testcase_30 AC 661 ms
80,404 KB
testcase_31 AC 693 ms
80,064 KB
testcase_32 AC 674 ms
80,528 KB
testcase_33 AC 247 ms
79,360 KB
testcase_34 AC 244 ms
79,276 KB
testcase_35 AC 238 ms
79,580 KB
testcase_36 AC 251 ms
79,604 KB
testcase_37 AC 219 ms
79,744 KB
testcase_38 AC 1,230 ms
82,912 KB
testcase_39 AC 1,198 ms
82,772 KB
testcase_40 AC 1,267 ms
83,024 KB
testcase_41 AC 1,210 ms
82,664 KB
testcase_42 AC 1,271 ms
83,276 KB
testcase_43 AC 91 ms
75,432 KB
testcase_44 AC 81 ms
75,400 KB
testcase_45 AC 88 ms
76,288 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-3:
    _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