結果

問題 No.210 探し物はどこですか?
ユーザー maspymaspy
提出日時 2020-03-20 00:26:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 634 ms / 2,000 ms
コード長 511 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 77,900 KB
最終ジャッジ日時 2024-12-14 03:40:58
合計ジャッジ時間 9,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
75,556 KB
testcase_01 AC 331 ms
76,412 KB
testcase_02 AC 634 ms
77,900 KB
testcase_03 AC 48 ms
61,308 KB
testcase_04 AC 66 ms
68,332 KB
testcase_05 AC 68 ms
68,960 KB
testcase_06 AC 47 ms
59,840 KB
testcase_07 AC 65 ms
68,436 KB
testcase_08 AC 76 ms
75,692 KB
testcase_09 AC 82 ms
75,952 KB
testcase_10 AC 74 ms
76,080 KB
testcase_11 AC 78 ms
75,692 KB
testcase_12 AC 81 ms
76,168 KB
testcase_13 AC 88 ms
76,428 KB
testcase_14 AC 83 ms
75,772 KB
testcase_15 AC 81 ms
76,036 KB
testcase_16 AC 78 ms
75,628 KB
testcase_17 AC 81 ms
75,692 KB
testcase_18 AC 122 ms
76,676 KB
testcase_19 AC 120 ms
76,264 KB
testcase_20 AC 121 ms
76,264 KB
testcase_21 AC 121 ms
75,856 KB
testcase_22 AC 118 ms
75,932 KB
testcase_23 AC 107 ms
76,156 KB
testcase_24 AC 108 ms
76,272 KB
testcase_25 AC 106 ms
76,344 KB
testcase_26 AC 109 ms
76,404 KB
testcase_27 AC 116 ms
76,032 KB
testcase_28 AC 287 ms
76,176 KB
testcase_29 AC 275 ms
76,284 KB
testcase_30 AC 292 ms
76,184 KB
testcase_31 AC 297 ms
76,104 KB
testcase_32 AC 285 ms
76,792 KB
testcase_33 AC 130 ms
76,208 KB
testcase_34 AC 128 ms
75,788 KB
testcase_35 AC 120 ms
76,068 KB
testcase_36 AC 131 ms
76,328 KB
testcase_37 AC 134 ms
76,592 KB
testcase_38 AC 451 ms
77,008 KB
testcase_39 AC 458 ms
77,384 KB
testcase_40 AC 470 ms
77,224 KB
testcase_41 AC 442 ms
77,196 KB
testcase_42 AC 469 ms
77,068 KB
testcase_43 AC 42 ms
54,128 KB
testcase_44 AC 41 ms
52,884 KB
testcase_45 AC 42 ms
52,776 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-9:
    n += 1
    x, q = hq[0]
    answer += n * (-x)
    S += x
    x *= (1 - q)
    heappushpop(hq, (x, q))

print(answer)
0