結果

問題 No.419 直角三角形
ユーザー GoryudyumaGoryudyuma
提出日時 2017-05-12 21:55:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 1,000 ms
コード長 537 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 41,836 KB
最終ジャッジ日時 2024-09-15 10:46:20
合計ジャッジ時間 6,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,940 KB
testcase_01 AC 143 ms
41,400 KB
testcase_02 AC 145 ms
41,664 KB
testcase_03 AC 144 ms
41,836 KB
testcase_04 AC 146 ms
41,476 KB
testcase_05 AC 144 ms
41,472 KB
testcase_06 AC 147 ms
41,672 KB
testcase_07 AC 148 ms
41,628 KB
testcase_08 AC 146 ms
41,628 KB
testcase_09 AC 143 ms
41,708 KB
testcase_10 AC 143 ms
41,736 KB
testcase_11 AC 145 ms
41,380 KB
testcase_12 AC 129 ms
41,068 KB
testcase_13 AC 130 ms
40,908 KB
testcase_14 AC 144 ms
41,800 KB
testcase_15 AC 145 ms
41,736 KB
testcase_16 AC 146 ms
41,804 KB
testcase_17 AC 146 ms
41,264 KB
testcase_18 AC 145 ms
41,680 KB
testcase_19 AC 150 ms
41,488 KB
testcase_20 AC 150 ms
41,412 KB
testcase_21 AC 147 ms
41,588 KB
testcase_22 AC 145 ms
41,708 KB
権限があれば一括ダウンロードができます

ソースコード

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();
                        if(a != b){
                                System.out.printf("%.10f\n", Math.sqrt(Math.abs(a * a - b * b)));
                        }else{
                                System.out.printf("%.10f\n", Math.sqrt(Math.abs(a * a + b * b)));
                        }
                }
        }
}
0