結果

問題 No.210 探し物はどこですか?
ユーザー titiatitia
提出日時 2022-06-28 02:53:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,392 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-20 13:00:40
合計ジャッジ時間 56,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,072 ms
10,624 KB
testcase_01 AC 1,181 ms
10,496 KB
testcase_02 AC 1,250 ms
10,752 KB
testcase_03 AC 1,055 ms
10,496 KB
testcase_04 AC 1,080 ms
10,624 KB
testcase_05 AC 1,033 ms
10,624 KB
testcase_06 AC 1,035 ms
10,752 KB
testcase_07 AC 1,053 ms
10,752 KB
testcase_08 AC 934 ms
10,496 KB
testcase_09 AC 922 ms
10,496 KB
testcase_10 AC 958 ms
10,496 KB
testcase_11 AC 1,019 ms
10,752 KB
testcase_12 AC 996 ms
10,624 KB
testcase_13 AC 1,158 ms
10,752 KB
testcase_14 AC 1,308 ms
10,624 KB
testcase_15 AC 1,323 ms
10,624 KB
testcase_16 AC 1,324 ms
10,624 KB
testcase_17 AC 1,382 ms
10,496 KB
testcase_18 AC 1,054 ms
10,624 KB
testcase_19 AC 1,076 ms
10,752 KB
testcase_20 AC 1,103 ms
10,624 KB
testcase_21 AC 1,062 ms
10,752 KB
testcase_22 AC 1,062 ms
10,624 KB
testcase_23 AC 1,277 ms
10,624 KB
testcase_24 AC 1,272 ms
10,496 KB
testcase_25 AC 1,288 ms
10,624 KB
testcase_26 AC 1,295 ms
10,624 KB
testcase_27 AC 1,322 ms
10,624 KB
testcase_28 AC 1,246 ms
10,496 KB
testcase_29 AC 1,217 ms
10,624 KB
testcase_30 AC 1,236 ms
10,624 KB
testcase_31 AC 1,231 ms
10,752 KB
testcase_32 AC 1,224 ms
10,624 KB
testcase_33 AC 1,372 ms
10,624 KB
testcase_34 AC 1,371 ms
10,752 KB
testcase_35 AC 1,375 ms
10,624 KB
testcase_36 AC 1,392 ms
10,752 KB
testcase_37 AC 1,390 ms
10,752 KB
testcase_38 AC 1,296 ms
10,624 KB
testcase_39 AC 1,293 ms
10,880 KB
testcase_40 AC 1,273 ms
10,752 KB
testcase_41 AC 1,304 ms
10,880 KB
testcase_42 AC 1,285 ms
10,880 KB
testcase_43 AC 578 ms
10,496 KB
testcase_44 AC 814 ms
10,496 KB
testcase_45 AC 1,097 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush

n=int(input())
P=list(map(int,input().split()))
Q=list(map(int,input().split()))

X=[]
for i in range(n):
    X.append((-P[i]*Q[i]/100000,1-Q[i]/100))

X.sort()

ANS=0
for tests in range(1,999999):
    x,y=heappop(X)

    ANS+=-x*tests
    heappush(X,(x*y,y))

print(ANS)
0