結果

問題 No.1381 Simple Geometry 1
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-02-07 21:01:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 73,996 KB
最終ジャッジ日時 2024-07-04 14:11:00
合計ジャッジ時間 3,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
73,996 KB
testcase_01 AC 64 ms
73,776 KB
testcase_02 AC 63 ms
72,616 KB
testcase_03 AC 65 ms
72,640 KB
testcase_04 AC 64 ms
72,768 KB
testcase_05 AC 65 ms
73,656 KB
testcase_06 AC 64 ms
73,352 KB
testcase_07 AC 64 ms
72,632 KB
testcase_08 AC 64 ms
73,352 KB
testcase_09 AC 65 ms
73,760 KB
testcase_10 AC 66 ms
73,244 KB
testcase_11 AC 65 ms
72,432 KB
testcase_12 AC 64 ms
73,436 KB
testcase_13 AC 64 ms
72,388 KB
testcase_14 AC 65 ms
72,536 KB
testcase_15 AC 65 ms
72,820 KB
testcase_16 AC 65 ms
72,708 KB
testcase_17 AC 67 ms
73,324 KB
testcase_18 AC 65 ms
73,480 KB
testcase_19 AC 65 ms
72,760 KB
testcase_20 AC 66 ms
73,972 KB
testcase_21 AC 65 ms
73,424 KB
testcase_22 AC 65 ms
72,368 KB
testcase_23 AC 64 ms
73,120 KB
testcase_24 AC 66 ms
72,688 KB
testcase_25 AC 65 ms
73,236 KB
testcase_26 AC 65 ms
72,420 KB
testcase_27 AC 65 ms
73,576 KB
testcase_28 AC 65 ms
73,776 KB
testcase_29 AC 65 ms
72,692 KB
testcase_30 AC 65 ms
72,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y, z, w = map(int, input().split())
l, r = 0, 10 ** 6
for i in range(200000):
    m = (l + r) / 2
    tate = x / m
    if tate < z:
        r = m
        continue
    BP = (tate ** 2 + y ** 2) ** 0.5
    BQ = (m ** 2 + z ** 2) ** 0.5
    if BQ + w > BP:
        r = m
    else:
        l = m
print(x - (r * z / 2 + (x / r) * y / 2 + (r - y) * (x / r - z) / 2))
0