結果

問題 No.210 探し物はどこですか?
ユーザー maspymaspy
提出日時 2020-03-20 00:28:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 511 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-12-14 03:41:35
合計ジャッジ時間 16,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
10,752 KB
testcase_01 AC 1,113 ms
10,624 KB
testcase_02 TLE -
testcase_03 AC 32 ms
10,496 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 42 ms
10,752 KB
testcase_09 AC 40 ms
10,624 KB
testcase_10 AC 41 ms
10,496 KB
testcase_11 AC 39 ms
10,624 KB
testcase_12 AC 38 ms
10,624 KB
testcase_13 AC 47 ms
10,624 KB
testcase_14 AC 39 ms
10,496 KB
testcase_15 AC 40 ms
10,624 KB
testcase_16 AC 39 ms
10,624 KB
testcase_17 AC 37 ms
10,496 KB
testcase_18 AC 140 ms
10,752 KB
testcase_19 AC 148 ms
10,624 KB
testcase_20 AC 135 ms
10,624 KB
testcase_21 AC 143 ms
10,624 KB
testcase_22 AC 144 ms
10,752 KB
testcase_23 AC 76 ms
10,624 KB
testcase_24 AC 65 ms
10,624 KB
testcase_25 AC 68 ms
10,624 KB
testcase_26 AC 71 ms
10,880 KB
testcase_27 AC 91 ms
10,624 KB
testcase_28 AC 619 ms
10,752 KB
testcase_29 AC 605 ms
10,880 KB
testcase_30 AC 587 ms
10,752 KB
testcase_31 AC 626 ms
10,496 KB
testcase_32 AC 612 ms
10,880 KB
testcase_33 AC 112 ms
10,880 KB
testcase_34 AC 114 ms
10,880 KB
testcase_35 AC 108 ms
10,752 KB
testcase_36 AC 126 ms
10,752 KB
testcase_37 AC 113 ms
10,880 KB
testcase_38 AC 1,060 ms
10,624 KB
testcase_39 AC 1,044 ms
10,880 KB
testcase_40 AC 1,083 ms
10,624 KB
testcase_41 AC 1,038 ms
10,624 KB
testcase_42 AC 1,086 ms
10,624 KB
testcase_43 AC 33 ms
10,496 KB
testcase_44 AC 31 ms
10,624 KB
testcase_45 AC 32 ms
10,624 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, q) for p, q in zip(P, Q)]
heapify(hq)

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

print(answer)
0