結果

問題 No.210 探し物はどこですか?
ユーザー maspymaspy
提出日時 2020-03-20 00:25:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,674 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 83,780 KB
最終ジャッジ日時 2024-12-14 03:40:48
合計ジャッジ時間 15,751 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
76,104 KB
testcase_01 AC 789 ms
77,800 KB
testcase_02 AC 1,674 ms
83,780 KB
testcase_03 AC 50 ms
59,028 KB
testcase_04 AC 68 ms
68,612 KB
testcase_05 AC 69 ms
70,296 KB
testcase_06 AC 48 ms
59,492 KB
testcase_07 AC 67 ms
67,744 KB
testcase_08 AC 78 ms
75,876 KB
testcase_09 AC 81 ms
75,796 KB
testcase_10 AC 77 ms
75,912 KB
testcase_11 AC 77 ms
75,812 KB
testcase_12 AC 80 ms
76,044 KB
testcase_13 AC 89 ms
75,996 KB
testcase_14 AC 81 ms
75,804 KB
testcase_15 AC 83 ms
76,056 KB
testcase_16 AC 84 ms
75,940 KB
testcase_17 AC 82 ms
76,104 KB
testcase_18 AC 159 ms
75,920 KB
testcase_19 AC 162 ms
75,988 KB
testcase_20 AC 153 ms
75,788 KB
testcase_21 AC 160 ms
76,032 KB
testcase_22 AC 155 ms
76,124 KB
testcase_23 AC 123 ms
76,060 KB
testcase_24 AC 108 ms
75,876 KB
testcase_25 AC 116 ms
76,136 KB
testcase_26 AC 117 ms
75,936 KB
testcase_27 AC 136 ms
76,200 KB
testcase_28 AC 547 ms
77,432 KB
testcase_29 AC 544 ms
76,944 KB
testcase_30 AC 541 ms
76,900 KB
testcase_31 AC 557 ms
77,156 KB
testcase_32 AC 545 ms
77,352 KB
testcase_33 AC 165 ms
76,232 KB
testcase_34 AC 165 ms
76,420 KB
testcase_35 AC 159 ms
76,272 KB
testcase_36 AC 175 ms
76,348 KB
testcase_37 AC 164 ms
76,208 KB
testcase_38 AC 954 ms
79,172 KB
testcase_39 AC 979 ms
79,676 KB
testcase_40 AC 999 ms
79,648 KB
testcase_41 AC 957 ms
79,404 KB
testcase_42 AC 972 ms
79,524 KB
testcase_43 AC 42 ms
53,148 KB
testcase_44 AC 42 ms
54,304 KB
testcase_45 AC 43 ms
53,420 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