結果

問題 No.735 接線
ユーザー dangodango
提出日時 2023-06-06 21:48:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 66 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 87,112 KB
実行使用メモリ 72,000 KB
最終ジャッジ日時 2023-08-28 10:51:01
合計ジャッジ時間 3,777 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,764 KB
testcase_01 AC 72 ms
71,672 KB
testcase_02 AC 71 ms
71,948 KB
testcase_03 AC 70 ms
71,636 KB
testcase_04 AC 70 ms
71,808 KB
testcase_05 AC 72 ms
71,792 KB
testcase_06 AC 72 ms
72,000 KB
testcase_07 AC 74 ms
71,788 KB
testcase_08 AC 72 ms
71,536 KB
testcase_09 AC 73 ms
71,656 KB
testcase_10 AC 73 ms
71,980 KB
testcase_11 AC 74 ms
71,640 KB
testcase_12 AC 72 ms
71,500 KB
testcase_13 AC 72 ms
71,820 KB
testcase_14 AC 75 ms
71,632 KB
testcase_15 AC 72 ms
71,652 KB
testcase_16 AC 72 ms
71,504 KB
testcase_17 AC 71 ms
71,796 KB
testcase_18 AC 70 ms
71,596 KB
testcase_19 AC 72 ms
71,496 KB
testcase_20 AC 72 ms
71,824 KB
testcase_21 AC 70 ms
71,672 KB
testcase_22 AC 72 ms
71,812 KB
testcase_23 AC 72 ms
71,916 KB
testcase_24 AC 73 ms
71,780 KB
testcase_25 AC 72 ms
71,888 KB
testcase_26 AC 73 ms
71,508 KB
testcase_27 AC 71 ms
71,912 KB
testcase_28 AC 73 ms
71,836 KB
testcase_29 AC 72 ms
71,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R, D = map(float, input().split())
print((D ** 2 - R ** 2) ** 0.5)
0