結果

問題 No.210 探し物はどこですか?
ユーザー roiti46roiti46
提出日時 2015-10-06 00:16:55
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,559 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 76,960 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-07-20 01:29:47
合計ジャッジ時間 54,964 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 928 ms
79,236 KB
testcase_01 AC 1,269 ms
82,116 KB
testcase_02 AC 1,325 ms
85,248 KB
testcase_03 AC 924 ms
78,976 KB
testcase_04 AC 865 ms
78,904 KB
testcase_05 AC 752 ms
78,652 KB
testcase_06 AC 771 ms
78,976 KB
testcase_07 AC 876 ms
78,848 KB
testcase_08 AC 761 ms
79,104 KB
testcase_09 AC 763 ms
78,720 KB
testcase_10 AC 750 ms
79,104 KB
testcase_11 AC 810 ms
78,996 KB
testcase_12 AC 824 ms
78,848 KB
testcase_13 AC 1,119 ms
79,224 KB
testcase_14 AC 1,349 ms
78,900 KB
testcase_15 AC 1,386 ms
79,016 KB
testcase_16 AC 1,228 ms
79,104 KB
testcase_17 AC 1,375 ms
79,488 KB
testcase_18 AC 886 ms
79,168 KB
testcase_19 AC 897 ms
79,220 KB
testcase_20 AC 918 ms
79,040 KB
testcase_21 AC 923 ms
79,556 KB
testcase_22 AC 899 ms
79,068 KB
testcase_23 AC 1,314 ms
82,676 KB
testcase_24 AC 1,264 ms
82,480 KB
testcase_25 AC 1,290 ms
82,460 KB
testcase_26 AC 1,362 ms
81,928 KB
testcase_27 AC 1,434 ms
82,820 KB
testcase_28 AC 1,271 ms
81,900 KB
testcase_29 AC 1,290 ms
81,936 KB
testcase_30 AC 1,287 ms
81,780 KB
testcase_31 AC 1,270 ms
81,660 KB
testcase_32 AC 1,237 ms
81,876 KB
testcase_33 AC 1,518 ms
84,936 KB
testcase_34 AC 1,559 ms
85,056 KB
testcase_35 AC 1,479 ms
85,056 KB
testcase_36 AC 1,540 ms
85,064 KB
testcase_37 AC 1,488 ms
85,072 KB
testcase_38 AC 1,409 ms
84,540 KB
testcase_39 AC 1,396 ms
84,780 KB
testcase_40 AC 1,409 ms
84,744 KB
testcase_41 AC 1,446 ms
84,156 KB
testcase_42 AC 1,435 ms
84,656 KB
testcase_43 AC 107 ms
78,128 KB
testcase_44 AC 855 ms
78,464 KB
testcase_45 AC 919 ms
79,104 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)
i = 1
while i < 1000000:
    pq, j = heapq.heappop(que)
    ans += -i * pq
    p[j] *= (1 - q[j])
    heapq.heappush(que, [-p[j] * q[j], j])
    i += 1
print "%.10f" % (ans / 1000.)
0