結果

問題 No.306 さいたま2008
ユーザー proriboneproribone
提出日時 2020-10-21 22:07:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 83,328 KB
最終ジャッジ日時 2024-07-21 09:09:28
合計ジャッジ時間 8,134 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
83,328 KB
testcase_01 AC 286 ms
82,944 KB
testcase_02 AC 291 ms
82,816 KB
testcase_03 AC 288 ms
82,816 KB
testcase_04 AC 288 ms
82,816 KB
testcase_05 AC 293 ms
82,816 KB
testcase_06 AC 290 ms
83,072 KB
testcase_07 AC 310 ms
82,944 KB
testcase_08 AC 305 ms
83,328 KB
testcase_09 AC 301 ms
82,816 KB
testcase_10 AC 315 ms
82,816 KB
testcase_11 AC 327 ms
83,072 KB
testcase_12 AC 323 ms
83,072 KB
testcase_13 AC 287 ms
83,072 KB
testcase_14 AC 293 ms
83,072 KB
testcase_15 AC 311 ms
83,200 KB
testcase_16 AC 296 ms
82,944 KB
testcase_17 AC 296 ms
82,688 KB
testcase_18 AC 297 ms
83,328 KB
testcase_19 AC 300 ms
82,944 KB
testcase_20 AC 292 ms
82,944 KB
testcase_21 AC 295 ms
82,944 KB
testcase_22 AC 293 ms
82,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal as d
xa,ya=map(d,input().split())
xb,yb=map(d,input().split())


def f(yp):
    s=d('2')
    AP=(xa**s+(yp-ya)**s).sqrt()
    BP=(xb**s+(yp-yb)**s).sqrt()
    return (AP+BP)

low,high=d('-1000'),d('2000')

D=d('10')**d('-9')

while(high-low)>D:
    l2=(low*d('2')+high)/d('3')
    h2=(low+high*d('2'))/d('3')
    if f(l2)>f(h2):
        low=l2
    else:
        high=h2
print(low)
0