結果

問題 No.210 探し物はどこですか?
ユーザー shotoyooshotoyoo
提出日時 2021-07-03 23:26:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 611 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 79,312 KB
最終ジャッジ日時 2024-06-30 15:30:56
合計ジャッジ時間 23,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 350 ms
77,816 KB
testcase_01 AC 411 ms
77,732 KB
testcase_02 AC 446 ms
79,020 KB
testcase_03 AC 493 ms
77,032 KB
testcase_04 AC 520 ms
77,400 KB
testcase_05 AC 497 ms
77,020 KB
testcase_06 AC 426 ms
77,112 KB
testcase_07 AC 489 ms
76,792 KB
testcase_08 AC 403 ms
77,104 KB
testcase_09 AC 420 ms
77,032 KB
testcase_10 AC 433 ms
77,324 KB
testcase_11 AC 447 ms
77,256 KB
testcase_12 AC 469 ms
77,308 KB
testcase_13 AC 494 ms
77,124 KB
testcase_14 AC 600 ms
77,464 KB
testcase_15 AC 558 ms
77,700 KB
testcase_16 AC 546 ms
76,988 KB
testcase_17 AC 573 ms
77,044 KB
testcase_18 AC 368 ms
77,780 KB
testcase_19 AC 369 ms
77,308 KB
testcase_20 AC 380 ms
77,620 KB
testcase_21 AC 366 ms
77,628 KB
testcase_22 AC 374 ms
77,632 KB
testcase_23 AC 502 ms
77,856 KB
testcase_24 AC 490 ms
77,796 KB
testcase_25 AC 503 ms
78,308 KB
testcase_26 AC 511 ms
78,212 KB
testcase_27 AC 509 ms
78,176 KB
testcase_28 AC 507 ms
77,836 KB
testcase_29 AC 503 ms
78,188 KB
testcase_30 AC 504 ms
78,332 KB
testcase_31 AC 496 ms
77,808 KB
testcase_32 AC 499 ms
77,800 KB
testcase_33 AC 593 ms
79,260 KB
testcase_34 AC 579 ms
79,176 KB
testcase_35 AC 553 ms
79,200 KB
testcase_36 AC 566 ms
78,796 KB
testcase_37 AC 611 ms
79,156 KB
testcase_38 AC 575 ms
78,648 KB
testcase_39 AC 574 ms
78,736 KB
testcase_40 AC 546 ms
78,732 KB
testcase_41 AC 561 ms
79,312 KB
testcase_42 AC 568 ms
78,444 KB
testcase_43 AC 63 ms
76,384 KB
testcase_44 AC 277 ms
76,432 KB
testcase_45 AC 493 ms
76,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n = int(input())
p = list(map(int, input().split()))
q = list(map(int, input().split()))
p = [v/1000 for v in p]
q = [v/100 for v in q]
from heapq import heappop as hpp, heappush as hp, heappushpop as hppp, heapreplace as hr, heapify
from random import random as r
def sub():
    h = [(-v*q[i],i) for i,v in enumerate(p)]
    heapify(h)
    ans = 0
    count = [0]*n
    total = 1
    pp = 1
    for ii in range(10**6):
        pr,i = h[0]
        pr *= -1
        pr2 = (1-q[i])*pr
        hr(h, (-pr2, i))
        ans += (ii+1)*pr
#         print(ans, pr)
    return ans
ans = sub()
print(ans)
0