結果

問題 No.210 探し物はどこですか?
ユーザー rpy3cpprpy3cpp
提出日時 2015-05-18 01:18:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 796 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,164 KB
最終ジャッジ日時 2024-07-06 05:15:01
合計ジャッジ時間 8,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
76,488 KB
testcase_01 AC 388 ms
77,444 KB
testcase_02 AC 796 ms
81,164 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 54 ms
64,640 KB
testcase_05 AC 52 ms
62,976 KB
testcase_06 AC 37 ms
52,864 KB
testcase_07 AC 51 ms
62,720 KB
testcase_08 AC 70 ms
74,240 KB
testcase_09 AC 66 ms
73,088 KB
testcase_10 AC 75 ms
76,288 KB
testcase_11 AC 62 ms
70,528 KB
testcase_12 AC 64 ms
71,168 KB
testcase_13 AC 75 ms
76,580 KB
testcase_14 AC 68 ms
72,064 KB
testcase_15 AC 69 ms
72,704 KB
testcase_16 AC 69 ms
72,960 KB
testcase_17 AC 67 ms
71,168 KB
testcase_18 AC 109 ms
76,032 KB
testcase_19 AC 107 ms
76,288 KB
testcase_20 AC 104 ms
76,232 KB
testcase_21 AC 109 ms
76,260 KB
testcase_22 AC 108 ms
76,452 KB
testcase_23 AC 92 ms
76,416 KB
testcase_24 AC 85 ms
76,288 KB
testcase_25 AC 86 ms
76,544 KB
testcase_26 AC 89 ms
76,544 KB
testcase_27 AC 95 ms
76,416 KB
testcase_28 AC 268 ms
76,928 KB
testcase_29 AC 268 ms
76,928 KB
testcase_30 AC 270 ms
77,056 KB
testcase_31 AC 275 ms
76,800 KB
testcase_32 AC 269 ms
76,804 KB
testcase_33 AC 112 ms
76,592 KB
testcase_34 AC 108 ms
76,720 KB
testcase_35 AC 107 ms
76,792 KB
testcase_36 AC 117 ms
76,744 KB
testcase_37 AC 110 ms
76,544 KB
testcase_38 AC 435 ms
78,224 KB
testcase_39 AC 443 ms
77,956 KB
testcase_40 AC 480 ms
78,636 KB
testcase_41 AC 430 ms
78,072 KB
testcase_42 AC 446 ms
78,020 KB
testcase_43 AC 37 ms
52,224 KB
testcase_44 AC 35 ms
52,480 KB
testcase_45 AC 34 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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