結果

問題 No.419 直角三角形
ユーザー Mcpu3Mcpu3
提出日時 2018-09-20 07:37:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 381 bytes
コンパイル時間 1,740 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 54,676 KB
最終ジャッジ日時 2024-07-18 08:27:37
合計ジャッジ時間 5,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,292 KB
testcase_01 AC 105 ms
53,588 KB
testcase_02 AC 112 ms
53,336 KB
testcase_03 AC 126 ms
54,424 KB
testcase_04 AC 128 ms
54,300 KB
testcase_05 AC 125 ms
54,576 KB
testcase_06 AC 121 ms
53,948 KB
testcase_07 AC 126 ms
54,676 KB
testcase_08 AC 122 ms
54,328 KB
testcase_09 AC 119 ms
53,984 KB
testcase_10 AC 118 ms
53,892 KB
testcase_11 AC 120 ms
54,180 KB
testcase_12 AC 121 ms
53,936 KB
testcase_13 AC 120 ms
53,808 KB
testcase_14 AC 121 ms
53,524 KB
testcase_15 AC 117 ms
53,556 KB
testcase_16 AC 126 ms
54,140 KB
testcase_17 AC 126 ms
53,820 KB
testcase_18 AC 125 ms
53,824 KB
testcase_19 AC 126 ms
53,872 KB
testcase_20 AC 123 ms
53,764 KB
testcase_21 AC 123 ms
54,004 KB
testcase_22 AC 118 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        double a=sc.nextDouble(),b=sc.nextDouble(),c,d;
        sc.close();
        c=a*a-b*b;
        d=b*b-a*a;
        System.out.print(a!=b?Math.sqrt(c)<Math.sqrt(d)?Math.sqrt(Math.abs(c)):Math.sqrt(Math.abs(d)):Math.sqrt(a*b+a*b));
    }
}
0