結果

問題 No.210 探し物はどこですか?
ユーザー vwxyzvwxyz
提出日時 2022-05-08 13:45:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 686 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,256 KB
最終ジャッジ日時 2024-07-08 01:35:21
合計ジャッジ時間 10,256 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
76,288 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 160 ms
76,288 KB
testcase_04 AC 141 ms
76,160 KB
testcase_05 AC 146 ms
76,416 KB
testcase_06 AC 156 ms
76,416 KB
testcase_07 AC 144 ms
76,160 KB
testcase_08 AC 133 ms
76,720 KB
testcase_09 AC 129 ms
76,288 KB
testcase_10 AC 134 ms
76,672 KB
testcase_11 AC 133 ms
76,288 KB
testcase_12 AC 138 ms
76,532 KB
testcase_13 AC 175 ms
76,368 KB
testcase_14 AC 180 ms
76,544 KB
testcase_15 AC 179 ms
76,544 KB
testcase_16 AC 176 ms
76,416 KB
testcase_17 AC 174 ms
76,424 KB
testcase_18 AC 162 ms
76,672 KB
testcase_19 AC 168 ms
76,416 KB
testcase_20 AC 164 ms
76,776 KB
testcase_21 AC 165 ms
76,576 KB
testcase_22 AC 166 ms
76,672 KB
testcase_23 AC 206 ms
76,620 KB
testcase_24 AC 202 ms
76,436 KB
testcase_25 AC 206 ms
76,776 KB
testcase_26 AC 214 ms
76,416 KB
testcase_27 AC 223 ms
76,748 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 241 ms
77,088 KB
testcase_34 AC 225 ms
77,192 KB
testcase_35 AC 224 ms
77,256 KB
testcase_36 AC 224 ms
77,180 KB
testcase_37 AC 225 ms
77,088 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 52 ms
73,472 KB
testcase_44 AC 140 ms
76,152 KB
testcase_45 AC 160 ms
76,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
readline=sys.stdin.readline

N=int(readline())
P=list(map(int,readline().split()))
Q=list(map(int,readline().split()))
for i in range(N):
    P[i]=[P[i]*Q[i]/100000,i]
    Q[i]/=100
_heapify_max(P)
ans=0
pro=1
for _ in range(10**5):
    p,i=_heappop_max(P)
    ans+=pro
    pro-=p
    _heappush_max(P,[p*(1-Q[i]),i])
print(ans)
0