結果

問題 No.210 探し物はどこですか?
ユーザー roiti46roiti46
提出日時 2015-10-06 00:38:59
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 781 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 77,032 KB
実行使用メモリ 82,952 KB
最終ジャッジ日時 2024-07-20 01:36:09
合計ジャッジ時間 13,091 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 212 ms
78,780 KB
testcase_01 AC 454 ms
80,408 KB
testcase_02 AC 781 ms
82,952 KB
testcase_03 AC 91 ms
77,320 KB
testcase_04 AC 108 ms
78,360 KB
testcase_05 AC 103 ms
78,240 KB
testcase_06 AC 85 ms
77,320 KB
testcase_07 AC 111 ms
78,208 KB
testcase_08 AC 125 ms
78,720 KB
testcase_09 AC 145 ms
78,848 KB
testcase_10 AC 125 ms
78,676 KB
testcase_11 AC 130 ms
79,232 KB
testcase_12 AC 128 ms
78,848 KB
testcase_13 AC 136 ms
79,104 KB
testcase_14 AC 131 ms
78,856 KB
testcase_15 AC 138 ms
78,720 KB
testcase_16 AC 129 ms
78,848 KB
testcase_17 AC 138 ms
78,988 KB
testcase_18 AC 208 ms
78,948 KB
testcase_19 AC 213 ms
78,924 KB
testcase_20 AC 210 ms
78,784 KB
testcase_21 AC 212 ms
79,296 KB
testcase_22 AC 211 ms
79,488 KB
testcase_23 AC 199 ms
80,092 KB
testcase_24 AC 205 ms
80,168 KB
testcase_25 AC 197 ms
80,256 KB
testcase_26 AC 208 ms
80,124 KB
testcase_27 AC 212 ms
79,936 KB
testcase_28 AC 365 ms
79,712 KB
testcase_29 AC 366 ms
79,876 KB
testcase_30 AC 377 ms
79,920 KB
testcase_31 AC 383 ms
79,904 KB
testcase_32 AC 370 ms
80,124 KB
testcase_33 AC 220 ms
80,272 KB
testcase_34 AC 228 ms
80,152 KB
testcase_35 AC 227 ms
80,044 KB
testcase_36 AC 227 ms
80,272 KB
testcase_37 AC 222 ms
80,512 KB
testcase_38 AC 542 ms
81,040 KB
testcase_39 AC 546 ms
80,916 KB
testcase_40 AC 565 ms
81,296 KB
testcase_41 AC 530 ms
80,984 KB
testcase_42 AC 553 ms
81,324 KB
testcase_43 AC 81 ms
75,520 KB
testcase_44 AC 81 ms
75,776 KB
testcase_45 AC 85 ms
76,032 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-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