結果

問題 No.735 接線
ユーザー htensaihtensai
提出日時 2019-12-07 13:48:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 78,944 KB
実行使用メモリ 41,848 KB
最終ジャッジ日時 2024-06-07 12:37:07
合計ジャッジ時間 7,602 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,560 KB
testcase_01 AC 142 ms
41,668 KB
testcase_02 AC 141 ms
41,848 KB
testcase_03 AC 143 ms
41,268 KB
testcase_04 AC 146 ms
41,488 KB
testcase_05 AC 144 ms
41,472 KB
testcase_06 AC 145 ms
41,564 KB
testcase_07 AC 138 ms
40,684 KB
testcase_08 AC 150 ms
41,736 KB
testcase_09 AC 142 ms
41,584 KB
testcase_10 AC 147 ms
41,508 KB
testcase_11 AC 142 ms
41,532 KB
testcase_12 AC 125 ms
41,040 KB
testcase_13 AC 138 ms
41,572 KB
testcase_14 AC 140 ms
41,564 KB
testcase_15 AC 141 ms
41,600 KB
testcase_16 AC 138 ms
41,540 KB
testcase_17 AC 123 ms
40,656 KB
testcase_18 AC 142 ms
41,660 KB
testcase_19 AC 149 ms
41,728 KB
testcase_20 AC 147 ms
41,784 KB
testcase_21 AC 140 ms
41,468 KB
testcase_22 AC 142 ms
41,244 KB
testcase_23 AC 141 ms
41,628 KB
testcase_24 AC 144 ms
41,500 KB
testcase_25 AC 140 ms
41,732 KB
testcase_26 AC 141 ms
41,664 KB
testcase_27 AC 140 ms
41,608 KB
testcase_28 AC 138 ms
40,892 KB
testcase_29 AC 139 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double r = sc.nextDouble();
        double d = sc.nextDouble();
        System.out.println(Math.sqrt(d * d - r * r));
   }
}
0