結果

問題 No.210 探し物はどこですか?
ユーザー maspymaspy
提出日時 2020-03-20 00:24:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 526 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-12-14 03:40:32
合計ジャッジ時間 21,712 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
17,700 KB
testcase_01 AC 1,574 ms
10,624 KB
testcase_02 TLE -
testcase_03 AC 33 ms
10,496 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 35 ms
10,496 KB
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 35 ms
10,624 KB
testcase_08 AC 48 ms
10,752 KB
testcase_09 AC 47 ms
10,624 KB
testcase_10 AC 46 ms
10,624 KB
testcase_11 AC 44 ms
10,752 KB
testcase_12 AC 43 ms
10,624 KB
testcase_13 AC 53 ms
10,752 KB
testcase_14 AC 43 ms
10,496 KB
testcase_15 AC 45 ms
10,496 KB
testcase_16 AC 44 ms
10,752 KB
testcase_17 AC 41 ms
10,624 KB
testcase_18 AC 183 ms
10,624 KB
testcase_19 AC 191 ms
10,880 KB
testcase_20 AC 181 ms
10,880 KB
testcase_21 AC 192 ms
10,752 KB
testcase_22 AC 184 ms
10,752 KB
testcase_23 AC 92 ms
10,880 KB
testcase_24 AC 80 ms
10,624 KB
testcase_25 AC 83 ms
10,880 KB
testcase_26 AC 88 ms
10,752 KB
testcase_27 AC 116 ms
10,624 KB
testcase_28 AC 851 ms
10,880 KB
testcase_29 AC 838 ms
10,752 KB
testcase_30 AC 850 ms
10,624 KB
testcase_31 AC 857 ms
10,752 KB
testcase_32 AC 834 ms
10,624 KB
testcase_33 AC 146 ms
10,880 KB
testcase_34 AC 147 ms
10,880 KB
testcase_35 AC 138 ms
11,008 KB
testcase_36 AC 159 ms
10,880 KB
testcase_37 AC 146 ms
10,880 KB
testcase_38 AC 1,499 ms
11,008 KB
testcase_39 AC 1,510 ms
10,624 KB
testcase_40 AC 1,592 ms
10,880 KB
testcase_41 AC 1,459 ms
10,752 KB
testcase_42 AC 1,544 ms
10,624 KB
testcase_43 AC 31 ms
10,752 KB
testcase_44 AC 31 ms
10,752 KB
testcase_45 AC 31 ms
21,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from heapq import heapify, heappushpop

N = int(readline())
P = [int(x) / 1000 for x in readline().split()]
Q = [int(x) / 100 for x in readline().split()]

hq = [(-p*q, p, q) for p, q in zip(P, Q)]
heapify(hq)

S = 1.0
n = 0
answer = 0
while S > 1e-9:
    n += 1
    x, p, q = hq[0]
    answer += n * (-x)
    S += x
    p *= (1 - q)
    heappushpop(hq, (-p * q, p, q))
    
print(answer)
0