結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 590 ms
79,104 KB
testcase_01 AC 703 ms
80,356 KB
testcase_02 WA -
testcase_03 AC 579 ms
78,848 KB
testcase_04 AC 557 ms
78,848 KB
testcase_05 AC 518 ms
78,592 KB
testcase_06 AC 524 ms
78,976 KB
testcase_07 AC 556 ms
78,776 KB
testcase_08 AC 387 ms
78,736 KB
testcase_09 AC 410 ms
78,756 KB
testcase_10 AC 412 ms
78,848 KB
testcase_11 AC 456 ms
78,720 KB
testcase_12 AC 458 ms
79,288 KB
testcase_13 AC 621 ms
79,024 KB
testcase_14 AC 730 ms
78,848 KB
testcase_15 AC 727 ms
78,848 KB
testcase_16 AC 687 ms
78,860 KB
testcase_17 AC 773 ms
78,892 KB
testcase_18 AC 564 ms
78,976 KB
testcase_19 AC 575 ms
78,968 KB
testcase_20 AC 572 ms
79,008 KB
testcase_21 AC 569 ms
78,852 KB
testcase_22 AC 576 ms
79,104 KB
testcase_23 AC 784 ms
80,436 KB
testcase_24 AC 777 ms
80,324 KB
testcase_25 AC 787 ms
80,936 KB
testcase_26 AC 784 ms
80,300 KB
testcase_27 AC 801 ms
80,552 KB
testcase_28 AC 742 ms
80,152 KB
testcase_29 AC 755 ms
80,300 KB
testcase_30 AC 744 ms
80,280 KB
testcase_31 AC 742 ms
80,280 KB
testcase_32 AC 755 ms
80,172 KB
testcase_33 AC 875 ms
81,776 KB
testcase_34 AC 886 ms
82,020 KB
testcase_35 AC 882 ms
81,764 KB
testcase_36 AC 892 ms
81,908 KB
testcase_37 AC 875 ms
82,008 KB
testcase_38 AC 855 ms
82,012 KB
testcase_39 AC 839 ms
81,876 KB
testcase_40 AC 844 ms
81,612 KB
testcase_41 AC 845 ms
81,636 KB
testcase_42 AC 839 ms
81,492 KB
testcase_43 AC 94 ms
77,824 KB
testcase_44 AC 527 ms
78,100 KB
testcase_45 AC 571 ms
78,880 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)]
ans = 0.0
que = [[-p[i] * q[i], i] for i in xrange(n)]
heapq.heapify(que)
i = 1
while i < 500000:
    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