結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
76,416 KB
testcase_01 AC 657 ms
77,568 KB
testcase_02 WA -
testcase_03 AC 522 ms
76,672 KB
testcase_04 AC 490 ms
76,652 KB
testcase_05 AC 471 ms
76,544 KB
testcase_06 AC 503 ms
76,460 KB
testcase_07 AC 468 ms
76,544 KB
testcase_08 AC 351 ms
76,672 KB
testcase_09 AC 350 ms
76,232 KB
testcase_10 AC 353 ms
76,288 KB
testcase_11 AC 394 ms
76,288 KB
testcase_12 AC 414 ms
76,380 KB
testcase_13 AC 553 ms
76,748 KB
testcase_14 AC 620 ms
76,664 KB
testcase_15 AC 623 ms
76,532 KB
testcase_16 AC 621 ms
76,444 KB
testcase_17 AC 667 ms
76,536 KB
testcase_18 AC 512 ms
76,964 KB
testcase_19 AC 526 ms
76,480 KB
testcase_20 AC 512 ms
76,856 KB
testcase_21 AC 523 ms
76,768 KB
testcase_22 AC 514 ms
76,696 KB
testcase_23 AC 715 ms
77,892 KB
testcase_24 AC 711 ms
77,460 KB
testcase_25 AC 715 ms
77,920 KB
testcase_26 AC 720 ms
77,656 KB
testcase_27 AC 720 ms
78,060 KB
testcase_28 AC 696 ms
77,784 KB
testcase_29 AC 678 ms
77,592 KB
testcase_30 AC 682 ms
77,860 KB
testcase_31 AC 681 ms
77,620 KB
testcase_32 AC 681 ms
77,672 KB
testcase_33 AC 815 ms
79,316 KB
testcase_34 AC 804 ms
79,364 KB
testcase_35 AC 814 ms
79,312 KB
testcase_36 AC 815 ms
79,452 KB
testcase_37 AC 807 ms
79,332 KB
testcase_38 AC 778 ms
79,292 KB
testcase_39 AC 782 ms
78,844 KB
testcase_40 AC 796 ms
79,028 KB
testcase_41 AC 793 ms
78,984 KB
testcase_42 AC 781 ms
78,844 KB
testcase_43 AC 61 ms
76,032 KB
testcase_44 AC 506 ms
76,068 KB
testcase_45 AC 523 ms
76,516 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(5*10**5):
    p,i=_heappop_max(P)
    ans+=pro
    pro-=p
    _heappush_max(P,[p*(1-Q[i]),i])
print(ans)
0