結果

問題 No.419 直角三角形
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 03:30:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 330 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-05-04 14:09:30
合計ジャッジ時間 5,273 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,064 KB
testcase_01 AC 112 ms
41,220 KB
testcase_02 AC 112 ms
41,160 KB
testcase_03 AC 120 ms
41,252 KB
testcase_04 AC 102 ms
40,208 KB
testcase_05 AC 100 ms
40,228 KB
testcase_06 AC 109 ms
40,268 KB
testcase_07 AC 110 ms
41,396 KB
testcase_08 WA -
testcase_09 AC 110 ms
41,612 KB
testcase_10 AC 109 ms
41,160 KB
testcase_11 AC 98 ms
40,100 KB
testcase_12 WA -
testcase_13 AC 101 ms
40,208 KB
testcase_14 AC 120 ms
41,248 KB
testcase_15 AC 121 ms
41,248 KB
testcase_16 AC 108 ms
40,088 KB
testcase_17 AC 108 ms
41,312 KB
testcase_18 AC 109 ms
41,200 KB
testcase_19 AC 110 ms
40,992 KB
testcase_20 AC 112 ms
40,300 KB
testcase_21 AC 104 ms
40,968 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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();
        int l = Math.max(a,b);
        int m = Math.min(a,b);
        double c = Math.sqrt(l*l-m*m);
        System.out.println(c);
    }
}
0