結果

問題 No.210 探し物はどこですか?
コンテスト
ユーザー norioc
提出日時 2025-11-24 02:24:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 574 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 78,708 KB
最終ジャッジ日時 2025-11-24 02:24:26
合計ジャッジ時間 22,789 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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 p, q in zip(ps, qs):
    heappush(qu, (-p*q, q))

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

print(ans)
0