結果

問題 No.306 さいたま2008
ユーザー ryomacryomac
提出日時 2024-01-12 02:17:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-09-27 20:43:30
合計ジャッジ時間 2,152 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,112 KB
testcase_01 AC 39 ms
52,724 KB
testcase_02 AC 40 ms
52,952 KB
testcase_03 AC 38 ms
52,760 KB
testcase_04 AC 39 ms
52,844 KB
testcase_05 AC 39 ms
52,320 KB
testcase_06 AC 39 ms
52,764 KB
testcase_07 AC 39 ms
52,880 KB
testcase_08 AC 40 ms
53,872 KB
testcase_09 AC 39 ms
53,476 KB
testcase_10 AC 39 ms
53,136 KB
testcase_11 AC 40 ms
54,096 KB
testcase_12 AC 39 ms
52,816 KB
testcase_13 AC 38 ms
53,468 KB
testcase_14 AC 39 ms
53,712 KB
testcase_15 AC 38 ms
52,812 KB
testcase_16 AC 39 ms
53,496 KB
testcase_17 AC 39 ms
53,128 KB
testcase_18 AC 39 ms
52,860 KB
testcase_19 AC 40 ms
52,600 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 39 ms
52,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y = map(int, input().split())
xx, yy = map(int, input().split())
from math import sqrt


def f(c):
    # (0,c)
    return sqrt((y - c) ** 2 + x**2) + sqrt((yy - c) ** 2 + xx**2)


l = 0
r = 10**9

while r - l > 10**-6:
    c1 = (l * 2 + r) / 3
    c2 = (l + r * 2) / 3
    if f(c1) < f(c2):
        r = c2
    else:
        l = c1
print(l)
0