結果

問題 No.735 接線
ユーザー Mcpu3Mcpu3
提出日時 2018-09-29 00:17:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 42,000 KB
最終ジャッジ日時 2024-10-12 07:45:26
合計ジャッジ時間 7,441 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,356 KB
testcase_01 AC 146 ms
41,292 KB
testcase_02 AC 144 ms
41,560 KB
testcase_03 AC 145 ms
41,816 KB
testcase_04 AC 127 ms
40,812 KB
testcase_05 AC 145 ms
41,352 KB
testcase_06 AC 147 ms
41,668 KB
testcase_07 AC 142 ms
41,352 KB
testcase_08 AC 146 ms
41,628 KB
testcase_09 AC 143 ms
42,000 KB
testcase_10 AC 141 ms
41,624 KB
testcase_11 AC 139 ms
41,420 KB
testcase_12 AC 143 ms
41,980 KB
testcase_13 AC 150 ms
41,824 KB
testcase_14 AC 144 ms
41,436 KB
testcase_15 AC 141 ms
41,448 KB
testcase_16 AC 142 ms
41,620 KB
testcase_17 AC 146 ms
41,580 KB
testcase_18 AC 143 ms
41,364 KB
testcase_19 AC 144 ms
41,520 KB
testcase_20 AC 150 ms
41,632 KB
testcase_21 AC 144 ms
41,312 KB
testcase_22 AC 146 ms
41,704 KB
testcase_23 AC 143 ms
41,760 KB
testcase_24 AC 145 ms
41,496 KB
testcase_25 AC 142 ms
41,620 KB
testcase_26 AC 142 ms
41,424 KB
testcase_27 AC 143 ms
41,840 KB
testcase_28 AC 143 ms
41,524 KB
testcase_29 AC 127 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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