結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
78,756 KB
testcase_01 AC 1,105 ms
81,460 KB
testcase_02 TLE -
testcase_03 AC 89 ms
77,056 KB
testcase_04 AC 113 ms
78,208 KB
testcase_05 AC 111 ms
77,952 KB
testcase_06 AC 88 ms
76,984 KB
testcase_07 AC 105 ms
78,352 KB
testcase_08 AC 127 ms
78,848 KB
testcase_09 AC 133 ms
79,152 KB
testcase_10 AC 129 ms
78,848 KB
testcase_11 AC 129 ms
78,976 KB
testcase_12 AC 136 ms
78,984 KB
testcase_13 AC 138 ms
78,976 KB
testcase_14 AC 137 ms
78,720 KB
testcase_15 AC 141 ms
78,848 KB
testcase_16 AC 135 ms
78,720 KB
testcase_17 AC 137 ms
78,848 KB
testcase_18 AC 211 ms
78,848 KB
testcase_19 AC 217 ms
78,848 KB
testcase_20 AC 204 ms
79,232 KB
testcase_21 AC 211 ms
78,720 KB
testcase_22 AC 220 ms
79,232 KB
testcase_23 AC 185 ms
79,488 KB
testcase_24 AC 163 ms
79,292 KB
testcase_25 AC 167 ms
79,144 KB
testcase_26 AC 166 ms
79,488 KB
testcase_27 AC 191 ms
79,360 KB
testcase_28 AC 690 ms
79,976 KB
testcase_29 AC 662 ms
80,124 KB
testcase_30 AC 667 ms
80,244 KB
testcase_31 AC 686 ms
80,148 KB
testcase_32 AC 659 ms
80,240 KB
testcase_33 AC 221 ms
79,792 KB
testcase_34 AC 222 ms
79,388 KB
testcase_35 AC 215 ms
79,508 KB
testcase_36 AC 231 ms
79,532 KB
testcase_37 AC 219 ms
79,692 KB
testcase_38 AC 1,171 ms
82,800 KB
testcase_39 AC 1,177 ms
83,228 KB
testcase_40 AC 1,226 ms
82,972 KB
testcase_41 AC 1,141 ms
82,612 KB
testcase_42 AC 1,192 ms
82,732 KB
testcase_43 AC 80 ms
75,776 KB
testcase_44 AC 82 ms
75,520 KB
testcase_45 AC 86 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n = int(raw_input())
p = map(int, raw_input().split())
q = map(int, raw_input().split())

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