結果

問題 No.210 探し物はどこですか?
ユーザー rpy3cpprpy3cpp
提出日時 2015-05-18 01:27:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 933 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,640 KB
最終ジャッジ日時 2024-06-06 03:09:10
合計ジャッジ時間 10,426 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
76,288 KB
testcase_01 AC 449 ms
77,312 KB
testcase_02 AC 933 ms
80,640 KB
testcase_03 AC 43 ms
52,608 KB
testcase_04 AC 63 ms
64,640 KB
testcase_05 AC 60 ms
62,848 KB
testcase_06 AC 43 ms
52,480 KB
testcase_07 AC 58 ms
62,720 KB
testcase_08 AC 78 ms
74,368 KB
testcase_09 AC 76 ms
72,704 KB
testcase_10 AC 87 ms
76,032 KB
testcase_11 AC 73 ms
69,888 KB
testcase_12 AC 76 ms
70,784 KB
testcase_13 AC 89 ms
76,032 KB
testcase_14 AC 79 ms
71,680 KB
testcase_15 AC 79 ms
72,576 KB
testcase_16 AC 80 ms
72,832 KB
testcase_17 AC 76 ms
71,296 KB
testcase_18 AC 125 ms
75,904 KB
testcase_19 AC 123 ms
76,160 KB
testcase_20 AC 121 ms
76,032 KB
testcase_21 AC 127 ms
76,160 KB
testcase_22 AC 123 ms
76,160 KB
testcase_23 AC 103 ms
76,160 KB
testcase_24 AC 98 ms
76,160 KB
testcase_25 AC 99 ms
76,160 KB
testcase_26 AC 105 ms
76,288 KB
testcase_27 AC 110 ms
76,288 KB
testcase_28 AC 320 ms
76,672 KB
testcase_29 AC 309 ms
76,544 KB
testcase_30 AC 313 ms
76,672 KB
testcase_31 AC 318 ms
76,672 KB
testcase_32 AC 318 ms
76,672 KB
testcase_33 AC 119 ms
76,672 KB
testcase_34 AC 122 ms
76,416 KB
testcase_35 AC 118 ms
76,160 KB
testcase_36 AC 127 ms
76,416 KB
testcase_37 AC 122 ms
76,416 KB
testcase_38 AC 513 ms
77,816 KB
testcase_39 AC 507 ms
77,972 KB
testcase_40 AC 520 ms
77,920 KB
testcase_41 AC 489 ms
77,508 KB
testcase_42 AC 509 ms
78,152 KB
testcase_43 AC 40 ms
52,608 KB
testcase_44 AC 40 ms
52,480 KB
testcase_45 AC 40 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
_ = input()
P = map(int, input().split())
Q = map(int, input().split())
PQ = [(-p*q*10**-5, p/1000.0, 1-q/100.0) for p, q in zip(P, Q) if p]
PQ.sort()
c = f = s = 1
while f > 10**-5:
  pq, p, q = PQ[0]
  f *= 1 + pq/s
  c += f
  s += pq
  heapq.heapreplace(PQ, (pq*q, p*q, q))
print(c)
0