結果

問題 No.210 探し物はどこですか?
ユーザー convexineqconvexineq
提出日時 2020-12-18 20:47:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 388 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 88,720 KB
最終ジャッジ日時 2024-09-21 09:20:04
合計ジャッジ時間 35,260 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,547 ms
77,524 KB
testcase_01 AC 1,675 ms
82,364 KB
testcase_02 AC 1,822 ms
88,720 KB
testcase_03 AC 1,746 ms
76,368 KB
testcase_04 AC 1,628 ms
76,544 KB
testcase_05 AC 1,702 ms
76,160 KB
testcase_06 AC 1,699 ms
76,644 KB
testcase_07 AC 1,609 ms
75,904 KB
testcase_08 AC 1,623 ms
77,328 KB
testcase_09 AC 1,705 ms
76,988 KB
testcase_10 AC 1,777 ms
76,624 KB
testcase_11 AC 1,614 ms
76,784 KB
testcase_12 AC 1,686 ms
77,040 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,567 ms
78,128 KB
testcase_19 AC 1,582 ms
78,232 KB
testcase_20 AC 1,755 ms
78,096 KB
testcase_21 AC 1,628 ms
78,044 KB
testcase_22 AC 1,706 ms
77,884 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 108 ms
75,648 KB
testcase_44 AC 1,065 ms
75,904 KB
testcase_45 AC 1,648 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

s = 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
for i in range(1,5000000):
    prob,idx = heappop(hq)        
    heappush(hq,(prob*(1.0-q[idx]),idx))
    ans -= i*prob
print(ans)
0