結果

問題 No.735 接線
ユーザー qibqib
提出日時 2023-04-14 21:44:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 53,620 KB
最終ジャッジ日時 2024-04-18 19:05:40
合計ジャッジ時間 2,183 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,108 KB
testcase_01 AC 37 ms
51,376 KB
testcase_02 AC 34 ms
51,692 KB
testcase_03 AC 36 ms
52,296 KB
testcase_04 AC 33 ms
51,748 KB
testcase_05 AC 34 ms
52,560 KB
testcase_06 AC 36 ms
52,036 KB
testcase_07 AC 35 ms
52,972 KB
testcase_08 AC 36 ms
52,612 KB
testcase_09 AC 34 ms
52,740 KB
testcase_10 AC 36 ms
51,940 KB
testcase_11 AC 37 ms
51,500 KB
testcase_12 AC 36 ms
53,168 KB
testcase_13 AC 34 ms
53,620 KB
testcase_14 AC 33 ms
51,372 KB
testcase_15 AC 38 ms
52,336 KB
testcase_16 AC 36 ms
52,596 KB
testcase_17 AC 37 ms
51,880 KB
testcase_18 AC 33 ms
51,740 KB
testcase_19 AC 37 ms
53,448 KB
testcase_20 AC 36 ms
53,100 KB
testcase_21 AC 34 ms
52,108 KB
testcase_22 WA -
testcase_23 AC 38 ms
51,940 KB
testcase_24 WA -
testcase_25 AC 37 ms
52,632 KB
testcase_26 AC 37 ms
53,072 KB
testcase_27 AC 36 ms
52,076 KB
testcase_28 AC 33 ms
53,060 KB
testcase_29 AC 36 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

EPS = 1.0e-8

r, d = map(float, input().split())

ng = 0
ok = 1.0e5
while abs(ok - ng) > EPS:
  mid = (ok + ng) / 2
  if mid * mid >= d ** 2 - r ** 2:
    ok = mid
  else:
    ng = mid

print("{:.8f}".format(ok))
0