結果

問題 No.210 探し物はどこですか?
ユーザー convexineqconvexineq
提出日時 2020-12-18 20:49:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 675 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 80,304 KB
最終ジャッジ日時 2024-09-21 09:21:50
合計ジャッジ時間 24,677 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 411 ms
76,764 KB
testcase_01 AC 447 ms
77,420 KB
testcase_02 AC 463 ms
78,860 KB
testcase_03 AC 424 ms
76,368 KB
testcase_04 AC 398 ms
76,288 KB
testcase_05 AC 408 ms
76,288 KB
testcase_06 AC 436 ms
76,288 KB
testcase_07 AC 417 ms
76,160 KB
testcase_08 AC 407 ms
76,556 KB
testcase_09 AC 419 ms
76,724 KB
testcase_10 AC 399 ms
76,624 KB
testcase_11 AC 398 ms
76,652 KB
testcase_12 AC 426 ms
76,472 KB
testcase_13 AC 478 ms
76,940 KB
testcase_14 AC 578 ms
76,920 KB
testcase_15 AC 534 ms
76,944 KB
testcase_16 AC 525 ms
77,036 KB
testcase_17 AC 506 ms
76,908 KB
testcase_18 AC 428 ms
76,976 KB
testcase_19 AC 418 ms
76,636 KB
testcase_20 AC 435 ms
77,068 KB
testcase_21 AC 427 ms
77,404 KB
testcase_22 AC 430 ms
76,728 KB
testcase_23 AC 555 ms
78,312 KB
testcase_24 AC 570 ms
78,340 KB
testcase_25 AC 553 ms
78,324 KB
testcase_26 AC 579 ms
78,568 KB
testcase_27 AC 556 ms
78,448 KB
testcase_28 AC 568 ms
77,836 KB
testcase_29 AC 555 ms
78,068 KB
testcase_30 AC 554 ms
78,092 KB
testcase_31 AC 568 ms
77,808 KB
testcase_32 AC 555 ms
77,560 KB
testcase_33 AC 675 ms
80,044 KB
testcase_34 AC 627 ms
79,752 KB
testcase_35 AC 649 ms
79,800 KB
testcase_36 AC 638 ms
79,780 KB
testcase_37 AC 653 ms
80,304 KB
testcase_38 AC 638 ms
78,648 KB
testcase_39 AC 618 ms
78,808 KB
testcase_40 AC 601 ms
78,748 KB
testcase_41 AC 612 ms
79,252 KB
testcase_42 AC 614 ms
78,716 KB
testcase_43 AC 74 ms
75,264 KB
testcase_44 AC 276 ms
76,032 KB
testcase_45 AC 449 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*p, = map(int,input().split())
*q, = map(int,input().split())

s = 0.0
for i in range(n):
    p[i] /= 1000
    q[i] /= 100
    s += p[i]*q[i]    

from heapq import *
hq = [(-pi*qi,i) for i,(pi,qi) in enumerate(zip(p,q))]
heapify(hq)
ans = 0.0
for i in range(1,1000000):
    prob,idx = heappop(hq)        
    heappush(hq,(prob*(1.0-q[idx]),idx))
    ans -= i*prob
print(ans)
0