結果

問題 No.210 探し物はどこですか?
ユーザー roiti46roiti46
提出日時 2015-10-06 00:18:11
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,578 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 85,664 KB
最終ジャッジ日時 2024-07-20 01:33:09
合計ジャッジ時間 56,639 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 976 ms
79,360 KB
testcase_01 AC 1,213 ms
81,896 KB
testcase_02 AC 1,377 ms
85,664 KB
testcase_03 AC 927 ms
78,848 KB
testcase_04 AC 929 ms
79,012 KB
testcase_05 AC 844 ms
78,592 KB
testcase_06 AC 821 ms
78,872 KB
testcase_07 AC 890 ms
78,464 KB
testcase_08 AC 808 ms
78,976 KB
testcase_09 AC 822 ms
78,976 KB
testcase_10 AC 785 ms
79,104 KB
testcase_11 AC 829 ms
79,104 KB
testcase_12 AC 811 ms
79,108 KB
testcase_13 AC 1,175 ms
79,248 KB
testcase_14 AC 1,406 ms
79,232 KB
testcase_15 AC 1,409 ms
79,376 KB
testcase_16 AC 1,286 ms
78,752 KB
testcase_17 AC 1,469 ms
79,132 KB
testcase_18 AC 954 ms
79,044 KB
testcase_19 AC 969 ms
79,216 KB
testcase_20 AC 960 ms
79,548 KB
testcase_21 AC 942 ms
79,172 KB
testcase_22 AC 948 ms
79,036 KB
testcase_23 AC 1,322 ms
82,224 KB
testcase_24 AC 1,386 ms
82,376 KB
testcase_25 AC 1,312 ms
82,468 KB
testcase_26 AC 1,362 ms
82,220 KB
testcase_27 AC 1,352 ms
82,852 KB
testcase_28 AC 1,325 ms
82,196 KB
testcase_29 AC 1,374 ms
82,348 KB
testcase_30 AC 1,268 ms
82,068 KB
testcase_31 AC 1,274 ms
81,820 KB
testcase_32 AC 1,276 ms
81,836 KB
testcase_33 AC 1,573 ms
85,112 KB
testcase_34 AC 1,578 ms
84,828 KB
testcase_35 AC 1,568 ms
84,828 KB
testcase_36 AC 1,548 ms
84,852 KB
testcase_37 AC 1,515 ms
84,912 KB
testcase_38 AC 1,452 ms
84,824 KB
testcase_39 AC 1,411 ms
84,180 KB
testcase_40 AC 1,412 ms
84,684 KB
testcase_41 AC 1,431 ms
84,320 KB
testcase_42 AC 1,434 ms
84,304 KB
testcase_43 AC 104 ms
78,080 KB
testcase_44 AC 807 ms
78,884 KB
testcase_45 AC 939 ms
78,976 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 < 1000000:
    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