結果

問題 No.210 探し物はどこですか?
ユーザー roiti46roiti46
提出日時 2015-10-06 00:40:16
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 80,876 KB
最終ジャッジ日時 2024-07-20 01:36:42
合計ジャッジ時間 11,307 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
78,720 KB
testcase_01 AC 391 ms
80,020 KB
testcase_02 WA -
testcase_03 AC 82 ms
77,208 KB
testcase_04 AC 102 ms
78,208 KB
testcase_05 AC 98 ms
78,584 KB
testcase_06 AC 79 ms
77,056 KB
testcase_07 AC 110 ms
78,140 KB
testcase_08 AC 121 ms
78,848 KB
testcase_09 AC 135 ms
78,848 KB
testcase_10 AC 117 ms
78,760 KB
testcase_11 AC 120 ms
78,720 KB
testcase_12 AC 118 ms
78,720 KB
testcase_13 AC 128 ms
78,976 KB
testcase_14 AC 122 ms
78,872 KB
testcase_15 AC 132 ms
78,848 KB
testcase_16 AC 125 ms
78,720 KB
testcase_17 AC 135 ms
78,848 KB
testcase_18 AC 186 ms
78,948 KB
testcase_19 AC 198 ms
79,688 KB
testcase_20 AC 192 ms
79,296 KB
testcase_21 AC 194 ms
78,916 KB
testcase_22 AC 194 ms
79,040 KB
testcase_23 AC 184 ms
80,344 KB
testcase_24 AC 184 ms
80,044 KB
testcase_25 AC 183 ms
79,748 KB
testcase_26 AC 190 ms
80,092 KB
testcase_27 AC 207 ms
79,992 KB
testcase_28 AC 327 ms
79,964 KB
testcase_29 AC 335 ms
79,616 KB
testcase_30 AC 334 ms
80,044 KB
testcase_31 AC 339 ms
79,776 KB
testcase_32 AC 327 ms
79,992 KB
testcase_33 AC 207 ms
80,524 KB
testcase_34 AC 213 ms
80,160 KB
testcase_35 AC 215 ms
80,048 KB
testcase_36 AC 210 ms
80,016 KB
testcase_37 AC 210 ms
80,256 KB
testcase_38 AC 478 ms
80,684 KB
testcase_39 AC 471 ms
80,664 KB
testcase_40 AC 493 ms
80,876 KB
testcase_41 AC 463 ms
80,700 KB
testcase_42 AC 482 ms
80,776 KB
testcase_43 AC 77 ms
75,312 KB
testcase_44 AC 90 ms
75,392 KB
testcase_45 AC 86 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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