結果

問題 No.210 探し物はどこですか?
ユーザー roiti46roiti46
提出日時 2015-10-06 00:14:32
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-07-20 01:17:28
合計ジャッジ時間 44,169 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 845 ms
6,400 KB
testcase_01 AC 972 ms
6,400 KB
testcase_02 WA -
testcase_03 AC 799 ms
6,400 KB
testcase_04 AC 783 ms
6,400 KB
testcase_05 AC 741 ms
6,528 KB
testcase_06 AC 749 ms
6,400 KB
testcase_07 AC 786 ms
6,400 KB
testcase_08 AC 645 ms
6,400 KB
testcase_09 AC 655 ms
6,400 KB
testcase_10 AC 656 ms
6,528 KB
testcase_11 AC 697 ms
6,528 KB
testcase_12 AC 700 ms
6,400 KB
testcase_13 AC 841 ms
6,528 KB
testcase_14 AC 957 ms
6,528 KB
testcase_15 AC 940 ms
6,400 KB
testcase_16 AC 937 ms
6,656 KB
testcase_17 AC 1,002 ms
6,528 KB
testcase_18 AC 802 ms
6,528 KB
testcase_19 AC 807 ms
6,528 KB
testcase_20 AC 813 ms
6,656 KB
testcase_21 AC 807 ms
6,528 KB
testcase_22 AC 812 ms
6,528 KB
testcase_23 AC 980 ms
6,528 KB
testcase_24 AC 971 ms
6,528 KB
testcase_25 AC 976 ms
6,528 KB
testcase_26 AC 978 ms
6,400 KB
testcase_27 AC 984 ms
6,528 KB
testcase_28 AC 969 ms
6,528 KB
testcase_29 AC 970 ms
6,400 KB
testcase_30 AC 967 ms
6,528 KB
testcase_31 AC 967 ms
6,528 KB
testcase_32 AC 972 ms
6,528 KB
testcase_33 AC 1,060 ms
6,656 KB
testcase_34 AC 1,058 ms
6,528 KB
testcase_35 AC 1,065 ms
6,656 KB
testcase_36 AC 1,069 ms
6,656 KB
testcase_37 AC 1,068 ms
6,784 KB
testcase_38 AC 1,055 ms
6,656 KB
testcase_39 AC 1,065 ms
6,656 KB
testcase_40 AC 1,059 ms
6,528 KB
testcase_41 AC 1,069 ms
6,656 KB
testcase_42 AC 1,062 ms
6,656 KB
testcase_43 AC 431 ms
6,528 KB
testcase_44 AC 751 ms
6,528 KB
testcase_45 AC 800 ms
6,656 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)]
ans = 0.0
que = [[-p[i] * q[i], i] for i in xrange(n)]
heapq.heapify(que)
for i in xrange(1, 500000):
    pq, j = heapq.heappop(que)
    ans += -i * pq
    p[j] *= (1 - q[j])
    heapq.heappush(que, [-p[j] * q[j], j])
print "%.10f" % (ans / 1000.)
0