結果

問題 No.735 接線
ユーザー dangodango
提出日時 2023-06-06 21:48:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 66 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 53,820 KB
最終ジャッジ日時 2024-06-09 06:21:30
合計ジャッジ時間 1,915 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,876 KB
testcase_01 AC 32 ms
52,948 KB
testcase_02 AC 32 ms
52,836 KB
testcase_03 AC 31 ms
53,548 KB
testcase_04 AC 30 ms
52,120 KB
testcase_05 AC 30 ms
53,284 KB
testcase_06 AC 32 ms
53,076 KB
testcase_07 AC 31 ms
53,504 KB
testcase_08 AC 31 ms
53,688 KB
testcase_09 AC 31 ms
53,820 KB
testcase_10 AC 32 ms
53,628 KB
testcase_11 AC 32 ms
52,992 KB
testcase_12 AC 31 ms
51,880 KB
testcase_13 AC 32 ms
52,676 KB
testcase_14 AC 31 ms
53,452 KB
testcase_15 AC 32 ms
52,512 KB
testcase_16 AC 31 ms
52,980 KB
testcase_17 AC 32 ms
53,632 KB
testcase_18 AC 30 ms
52,236 KB
testcase_19 AC 31 ms
52,692 KB
testcase_20 AC 31 ms
52,284 KB
testcase_21 AC 32 ms
52,308 KB
testcase_22 AC 35 ms
52,308 KB
testcase_23 AC 31 ms
51,924 KB
testcase_24 AC 32 ms
52,520 KB
testcase_25 AC 31 ms
52,944 KB
testcase_26 AC 31 ms
52,956 KB
testcase_27 AC 30 ms
52,000 KB
testcase_28 AC 33 ms
52,916 KB
testcase_29 AC 34 ms
52,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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