結果

問題 No.210 探し物はどこですか?
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-24 19:01:11
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 655 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 76,900 KB
実行使用メモリ 82,980 KB
最終ジャッジ日時 2024-07-06 06:49:12
合計ジャッジ時間 11,318 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
78,988 KB
testcase_01 AC 394 ms
80,480 KB
testcase_02 AC 655 ms
82,980 KB
testcase_03 AC 79 ms
77,320 KB
testcase_04 AC 91 ms
78,112 KB
testcase_05 AC 95 ms
78,244 KB
testcase_06 AC 73 ms
77,500 KB
testcase_07 AC 88 ms
78,244 KB
testcase_08 AC 113 ms
78,880 KB
testcase_09 AC 125 ms
78,872 KB
testcase_10 AC 111 ms
79,128 KB
testcase_11 AC 110 ms
78,876 KB
testcase_12 AC 104 ms
78,912 KB
testcase_13 AC 111 ms
78,844 KB
testcase_14 AC 113 ms
78,884 KB
testcase_15 AC 122 ms
78,848 KB
testcase_16 AC 113 ms
78,876 KB
testcase_17 AC 114 ms
79,012 KB
testcase_18 AC 170 ms
79,164 KB
testcase_19 AC 177 ms
79,188 KB
testcase_20 AC 183 ms
79,044 KB
testcase_21 AC 180 ms
79,056 KB
testcase_22 AC 176 ms
78,888 KB
testcase_23 AC 164 ms
80,108 KB
testcase_24 AC 165 ms
80,112 KB
testcase_25 AC 168 ms
80,316 KB
testcase_26 AC 168 ms
79,996 KB
testcase_27 AC 179 ms
80,180 KB
testcase_28 AC 323 ms
79,864 KB
testcase_29 AC 329 ms
80,112 KB
testcase_30 AC 314 ms
79,892 KB
testcase_31 AC 309 ms
79,964 KB
testcase_32 AC 337 ms
79,856 KB
testcase_33 AC 195 ms
80,272 KB
testcase_34 AC 214 ms
80,448 KB
testcase_35 AC 205 ms
80,380 KB
testcase_36 AC 210 ms
80,572 KB
testcase_37 AC 195 ms
80,248 KB
testcase_38 AC 491 ms
80,988 KB
testcase_39 AC 494 ms
81,052 KB
testcase_40 AC 485 ms
81,040 KB
testcase_41 AC 479 ms
80,808 KB
testcase_42 AC 525 ms
81,296 KB
testcase_43 AC 74 ms
75,440 KB
testcase_44 AC 74 ms
75,684 KB
testcase_45 AC 78 ms
76,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush,heappop
n=int(raw_input())
P=map(int,raw_input().split())
Q=map(int,raw_input().split())
hq=[]
for i,p in enumerate(P):
    heappush(hq,(-p*Q[i]*1.0/100000,i))
ans=0.0
time=1
while True:
   cur,i=heappop(hq)
   ans+=-time*cur
   if -time*cur < 0.000001:
       break
   time+=1
   heappush(hq,(cur*(100-Q[i])/100,i))
print "%.10f"%ans
0