結果

問題 No.210 探し物はどこですか?
ユーザー rlangevinrlangevin
提出日時 2023-10-29 17:06:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 78,644 KB
最終ジャッジ日時 2024-09-25 16:46:12
合計ジャッジ時間 22,041 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 272 ms
76,376 KB
testcase_01 AC 304 ms
76,536 KB
testcase_02 AC 346 ms
77,368 KB
testcase_03 AC 442 ms
76,700 KB
testcase_04 AC 423 ms
76,528 KB
testcase_05 AC 417 ms
76,488 KB
testcase_06 AC 414 ms
76,648 KB
testcase_07 AC 410 ms
76,480 KB
testcase_08 AC 365 ms
76,532 KB
testcase_09 AC 365 ms
76,620 KB
testcase_10 AC 392 ms
77,032 KB
testcase_11 AC 388 ms
77,064 KB
testcase_12 AC 426 ms
76,968 KB
testcase_13 AC 457 ms
76,720 KB
testcase_14 AC 532 ms
77,444 KB
testcase_15 AC 534 ms
77,448 KB
testcase_16 AC 484 ms
77,220 KB
testcase_17 AC 516 ms
76,708 KB
testcase_18 AC 372 ms
76,760 KB
testcase_19 AC 375 ms
76,984 KB
testcase_20 AC 374 ms
77,004 KB
testcase_21 AC 361 ms
76,796 KB
testcase_22 AC 371 ms
76,664 KB
testcase_23 AC 530 ms
77,276 KB
testcase_24 AC 514 ms
77,780 KB
testcase_25 AC 503 ms
77,736 KB
testcase_26 AC 531 ms
77,716 KB
testcase_27 AC 517 ms
77,596 KB
testcase_28 AC 436 ms
77,300 KB
testcase_29 AC 437 ms
77,096 KB
testcase_30 AC 447 ms
77,292 KB
testcase_31 AC 457 ms
76,976 KB
testcase_32 AC 429 ms
77,224 KB
testcase_33 AC 557 ms
78,644 KB
testcase_34 AC 553 ms
78,004 KB
testcase_35 AC 564 ms
78,100 KB
testcase_36 AC 570 ms
78,392 KB
testcase_37 AC 550 ms
78,132 KB
testcase_38 AC 496 ms
77,968 KB
testcase_39 AC 475 ms
77,764 KB
testcase_40 AC 490 ms
77,592 KB
testcase_41 AC 505 ms
77,644 KB
testcase_42 AC 478 ms
77,876 KB
testcase_43 AC 64 ms
75,852 KB
testcase_44 AC 163 ms
76,180 KB
testcase_45 AC 454 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

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

H = []
ans = 0
for i in range(N):
    heappush(H, (-P[i] * Q[i]/1e5, 1 - Q[i]/1e2))
    
for i in range(1, 10**6):
    v, q = heappop(H)
    ans -= v * i
    v *= q
    heappush(H, (v, q))
    
print(ans)
0