結果

問題 No.210 探し物はどこですか?
ユーザー roiti46roiti46
提出日時 2015-10-06 00:41:03
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 651 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 76,920 KB
実行使用メモリ 82,572 KB
最終ジャッジ日時 2024-07-20 01:37:16
合計ジャッジ時間 12,093 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
78,876 KB
testcase_01 AC 379 ms
80,408 KB
testcase_02 AC 651 ms
82,572 KB
testcase_03 AC 86 ms
77,056 KB
testcase_04 AC 108 ms
78,720 KB
testcase_05 AC 99 ms
78,136 KB
testcase_06 AC 82 ms
77,064 KB
testcase_07 AC 103 ms
78,108 KB
testcase_08 AC 121 ms
78,780 KB
testcase_09 AC 139 ms
79,104 KB
testcase_10 AC 123 ms
78,976 KB
testcase_11 AC 118 ms
79,240 KB
testcase_12 AC 120 ms
79,108 KB
testcase_13 AC 128 ms
79,156 KB
testcase_14 AC 122 ms
78,848 KB
testcase_15 AC 127 ms
78,880 KB
testcase_16 AC 127 ms
78,984 KB
testcase_17 AC 132 ms
78,976 KB
testcase_18 AC 191 ms
79,204 KB
testcase_19 AC 191 ms
79,048 KB
testcase_20 AC 189 ms
79,048 KB
testcase_21 AC 195 ms
79,308 KB
testcase_22 AC 192 ms
78,972 KB
testcase_23 AC 189 ms
80,224 KB
testcase_24 AC 191 ms
79,796 KB
testcase_25 AC 187 ms
80,000 KB
testcase_26 AC 199 ms
79,996 KB
testcase_27 AC 207 ms
80,376 KB
testcase_28 AC 344 ms
80,224 KB
testcase_29 AC 348 ms
79,872 KB
testcase_30 AC 345 ms
80,044 KB
testcase_31 AC 345 ms
80,164 KB
testcase_32 AC 337 ms
79,548 KB
testcase_33 AC 215 ms
80,264 KB
testcase_34 AC 219 ms
80,412 KB
testcase_35 AC 215 ms
80,112 KB
testcase_36 AC 218 ms
80,148 KB
testcase_37 AC 214 ms
80,260 KB
testcase_38 AC 499 ms
81,316 KB
testcase_39 AC 483 ms
80,784 KB
testcase_40 AC 521 ms
80,908 KB
testcase_41 AC 485 ms
80,696 KB
testcase_42 AC 482 ms
80,676 KB
testcase_43 AC 80 ms
75,440 KB
testcase_44 AC 79 ms
75,416 KB
testcase_45 AC 81 ms
76,316 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 > 5e-6:
    _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