結果

問題 No.419 直角三角形
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 03:32:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 467 bytes
コンパイル時間 4,795 ms
コンパイル使用メモリ 83,448 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-11-26 02:05:50
合計ジャッジ時間 7,820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,728 KB
testcase_01 AC 106 ms
52,576 KB
testcase_02 AC 116 ms
54,124 KB
testcase_03 AC 102 ms
52,832 KB
testcase_04 AC 116 ms
53,808 KB
testcase_05 AC 105 ms
52,868 KB
testcase_06 AC 106 ms
52,616 KB
testcase_07 AC 104 ms
52,452 KB
testcase_08 AC 103 ms
52,696 KB
testcase_09 AC 105 ms
52,404 KB
testcase_10 AC 115 ms
53,816 KB
testcase_11 AC 116 ms
53,964 KB
testcase_12 AC 102 ms
52,928 KB
testcase_13 AC 104 ms
52,716 KB
testcase_14 AC 120 ms
53,988 KB
testcase_15 AC 104 ms
52,840 KB
testcase_16 AC 104 ms
52,804 KB
testcase_17 AC 106 ms
52,448 KB
testcase_18 AC 103 ms
52,832 KB
testcase_19 AC 105 ms
52,912 KB
testcase_20 AC 118 ms
54,068 KB
testcase_21 AC 119 ms
53,804 KB
testcase_22 AC 115 ms
53,948 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