結果

問題 No.210 探し物はどこですか?
ユーザー vwxyzvwxyz
提出日時 2021-09-25 01:29:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 687 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,544 KB
最終ジャッジ日時 2024-07-05 11:52:02
合計ジャッジ時間 26,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 492 ms
76,624 KB
testcase_01 AC 604 ms
77,436 KB
testcase_02 WA -
testcase_03 AC 443 ms
76,416 KB
testcase_04 AC 396 ms
76,672 KB
testcase_05 AC 398 ms
76,160 KB
testcase_06 AC 417 ms
76,288 KB
testcase_07 AC 399 ms
76,544 KB
testcase_08 AC 316 ms
76,288 KB
testcase_09 AC 309 ms
76,288 KB
testcase_10 AC 321 ms
76,756 KB
testcase_11 AC 364 ms
76,416 KB
testcase_12 AC 361 ms
76,672 KB
testcase_13 AC 490 ms
76,628 KB
testcase_14 AC 557 ms
76,536 KB
testcase_15 AC 553 ms
76,800 KB
testcase_16 AC 549 ms
76,288 KB
testcase_17 AC 587 ms
76,940 KB
testcase_18 AC 460 ms
76,908 KB
testcase_19 AC 471 ms
76,672 KB
testcase_20 AC 462 ms
76,544 KB
testcase_21 AC 469 ms
76,820 KB
testcase_22 AC 476 ms
76,516 KB
testcase_23 AC 641 ms
78,200 KB
testcase_24 AC 647 ms
77,840 KB
testcase_25 AC 639 ms
77,860 KB
testcase_26 AC 631 ms
77,756 KB
testcase_27 AC 658 ms
77,972 KB
testcase_28 AC 609 ms
77,456 KB
testcase_29 AC 621 ms
77,592 KB
testcase_30 AC 611 ms
77,672 KB
testcase_31 AC 611 ms
77,924 KB
testcase_32 AC 611 ms
77,728 KB
testcase_33 AC 716 ms
79,388 KB
testcase_34 AC 713 ms
79,416 KB
testcase_35 AC 721 ms
79,312 KB
testcase_36 AC 716 ms
79,248 KB
testcase_37 AC 713 ms
79,076 KB
testcase_38 AC 696 ms
78,892 KB
testcase_39 AC 694 ms
79,044 KB
testcase_40 AC 694 ms
78,904 KB
testcase_41 AC 698 ms
78,520 KB
testcase_42 AC 695 ms
78,768 KB
testcase_43 AC 65 ms
76,160 KB
testcase_44 AC 406 ms
76,416 KB
testcase_45 AC 436 ms
76,416 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