結果

問題 No.419 直角三角形
ユーザー GoryudyumaGoryudyuma
提出日時 2017-05-12 21:53:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 338 bytes
コンパイル時間 2,349 ms
コンパイル使用メモリ 75,116 KB
実行使用メモリ 41,928 KB
最終ジャッジ日時 2024-09-15 10:46:13
合計ジャッジ時間 6,770 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,420 KB
testcase_01 AC 142 ms
41,416 KB
testcase_02 AC 143 ms
41,928 KB
testcase_03 AC 149 ms
41,340 KB
testcase_04 AC 147 ms
41,896 KB
testcase_05 AC 144 ms
41,368 KB
testcase_06 AC 147 ms
41,472 KB
testcase_07 AC 142 ms
41,420 KB
testcase_08 WA -
testcase_09 AC 146 ms
41,680 KB
testcase_10 AC 127 ms
40,784 KB
testcase_11 AC 142 ms
41,288 KB
testcase_12 WA -
testcase_13 AC 149 ms
41,544 KB
testcase_14 AC 142 ms
41,496 KB
testcase_15 AC 146 ms
41,472 KB
testcase_16 AC 144 ms
41,468 KB
testcase_17 AC 144 ms
41,304 KB
testcase_18 AC 145 ms
41,696 KB
testcase_19 AC 144 ms
41,776 KB
testcase_20 AC 139 ms
41,364 KB
testcase_21 AC 144 ms
41,616 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
        public static void main(String[] args){
                try(Scanner sc = new Scanner(System.in)){
                        double a = sc.nextDouble(), b = sc.nextDouble();
                        System.out.printf("%.10f\n", Math.sqrt(Math.abs(a * a - b * b)));
                }
        }
}
0