結果

問題 No.210 探し物はどこですか?
ユーザー vwxyzvwxyz
提出日時 2022-05-08 13:46:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,129 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 80,808 KB
最終ジャッジ日時 2024-07-08 01:38:40
合計ジャッジ時間 40,165 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 733 ms
76,232 KB
testcase_01 AC 948 ms
78,208 KB
testcase_02 AC 1,017 ms
80,576 KB
testcase_03 AC 675 ms
76,160 KB
testcase_04 AC 600 ms
76,544 KB
testcase_05 AC 609 ms
76,160 KB
testcase_06 AC 629 ms
76,416 KB
testcase_07 AC 596 ms
76,288 KB
testcase_08 AC 545 ms
76,288 KB
testcase_09 AC 542 ms
76,288 KB
testcase_10 AC 539 ms
76,288 KB
testcase_11 AC 584 ms
76,160 KB
testcase_12 AC 561 ms
76,416 KB
testcase_13 AC 844 ms
77,004 KB
testcase_14 AC 919 ms
76,416 KB
testcase_15 AC 920 ms
76,168 KB
testcase_16 AC 889 ms
76,288 KB
testcase_17 AC 951 ms
76,680 KB
testcase_18 AC 679 ms
76,528 KB
testcase_19 AC 699 ms
76,572 KB
testcase_20 AC 689 ms
76,416 KB
testcase_21 AC 688 ms
76,708 KB
testcase_22 AC 681 ms
76,640 KB
testcase_23 AC 967 ms
78,576 KB
testcase_24 AC 955 ms
78,356 KB
testcase_25 AC 975 ms
78,496 KB
testcase_26 AC 983 ms
78,592 KB
testcase_27 AC 978 ms
78,748 KB
testcase_28 AC 927 ms
78,220 KB
testcase_29 AC 930 ms
78,104 KB
testcase_30 AC 932 ms
78,444 KB
testcase_31 AC 935 ms
78,184 KB
testcase_32 AC 926 ms
78,248 KB
testcase_33 AC 1,129 ms
80,808 KB
testcase_34 AC 1,097 ms
80,320 KB
testcase_35 AC 1,127 ms
80,348 KB
testcase_36 AC 1,107 ms
80,724 KB
testcase_37 AC 1,096 ms
80,448 KB
testcase_38 AC 1,064 ms
79,932 KB
testcase_39 AC 1,048 ms
80,076 KB
testcase_40 AC 1,054 ms
80,308 KB
testcase_41 AC 1,052 ms
80,060 KB
testcase_42 AC 1,059 ms
79,924 KB
testcase_43 AC 69 ms
75,648 KB
testcase_44 AC 610 ms
76,032 KB
testcase_45 AC 638 ms
76,288 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(8*10**5):
    p,i=_heappop_max(P)
    ans+=pro
    pro-=p
    _heappush_max(P,[p*(1-Q[i]),i])
print(ans)
0