結果

問題 No.210 探し物はどこですか?
コンテスト
ユーザー norioc
提出日時 2025-11-23 23:27:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 692 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 80,508 KB
最終ジャッジ日時 2025-11-23 23:28:02
合計ジャッジ時間 26,709 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from heapq import heappush, heappop

N = int(input())
P = list(map(int, input().split()))
Q = list(map(int, input().split()))

ps = [p/1000 for p in P]
qs = [q/100 for q in Q]

qu = []
for i, (p, q) in enumerate(zip(ps, qs)):
    heappush(qu, (-p*q, i))

ans = 0
for i in range(1, 10**6):
    p, ind = heappop(qu)
    ans += -p * i
    heappush(qu, (p * (1-qs[ind]), ind))

print(ans)
0