結果

問題 No.306 さいたま2008
ユーザー neterukunneterukun
提出日時 2021-06-15 23:16:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 52,852 KB
最終ジャッジ日時 2024-12-28 02:28:55
合計ジャッジ時間 2,041 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 39 ms
52,736 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 42 ms
52,524 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 38 ms
52,852 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 41 ms
52,480 KB
testcase_12 AC 39 ms
52,736 KB
testcase_13 AC 38 ms
52,736 KB
testcase_14 AC 39 ms
52,224 KB
testcase_15 AC 39 ms
52,736 KB
testcase_16 AC 38 ms
52,608 KB
testcase_17 AC 40 ms
52,480 KB
testcase_18 AC 39 ms
52,608 KB
testcase_19 AC 38 ms
52,608 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ternary_search_min(l, r, evaluate):
    EPS = 10 ** (-7)
    while r - l > EPS:
        midl = l + (r - l) / 3
        midr = r - (r - l) / 3
        if evaluate(midl) > evaluate(midr):
            l = midl
        else:
            r = midr
    return l, evaluate(l)


def solve(y):
    dist = ((ya - y) ** 2 + xa ** 2) ** 0.5 + ((yb - y) ** 2 + xb ** 2) ** 0.5
    return dist


xa, ya = map(int, input().split())
xb, yb = map(int, input().split())


y, dist = ternary_search_min(-10, 1000 + 10, solve)
print(y)
0