結果

問題 No.419 直角三角形
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 03:32:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 1,000 ms
コード長 467 bytes
コンパイル時間 2,607 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-05-04 14:10:45
合計ジャッジ時間 5,189 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,920 KB
testcase_01 AC 98 ms
53,388 KB
testcase_02 AC 108 ms
54,060 KB
testcase_03 AC 97 ms
52,972 KB
testcase_04 AC 109 ms
54,152 KB
testcase_05 AC 97 ms
52,956 KB
testcase_06 AC 108 ms
54,300 KB
testcase_07 AC 109 ms
54,032 KB
testcase_08 AC 103 ms
52,968 KB
testcase_09 AC 99 ms
52,836 KB
testcase_10 AC 108 ms
53,860 KB
testcase_11 AC 108 ms
53,976 KB
testcase_12 AC 108 ms
54,352 KB
testcase_13 AC 107 ms
54,208 KB
testcase_14 AC 107 ms
53,936 KB
testcase_15 AC 107 ms
54,140 KB
testcase_16 AC 112 ms
54,128 KB
testcase_17 AC 101 ms
52,820 KB
testcase_18 AC 112 ms
53,956 KB
testcase_19 AC 108 ms
53,968 KB
testcase_20 AC 107 ms
54,076 KB
testcase_21 AC 112 ms
54,276 KB
testcase_22 AC 109 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        if(a!=b){
            int l = Math.max(a,b);
            int m = Math.min(a,b);
            double c = Math.sqrt(l*l-m*m);
            System.out.println(c);
        }else{
            double c = Math.sqrt(a*a*2);
            System.out.println(c);
        }
    }
}

0