結果

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

テストケース

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

ソースコード

diff #

def ternary_search_min(l, r, evaluate):
    EPS = 10 ** (-6)
    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