結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,480 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 34 ms
52,352 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 34 ms
52,352 KB
testcase_06 AC 34 ms
52,352 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 33 ms
52,480 KB
testcase_10 AC 34 ms
52,352 KB
testcase_11 AC 34 ms
52,224 KB
testcase_12 AC 35 ms
52,224 KB
testcase_13 AC 34 ms
52,224 KB
testcase_14 AC 35 ms
52,096 KB
testcase_15 AC 34 ms
52,224 KB
testcase_16 AC 37 ms
52,608 KB
testcase_17 AC 34 ms
52,224 KB
testcase_18 AC 39 ms
52,352 KB
testcase_19 AC 35 ms
51,968 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 34 ms
52,608 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