結果

問題 No.419 直角三角形
ユーザー tentententen
提出日時 2020-09-11 17:13:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 444 bytes
コンパイル時間 2,289 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 55,900 KB
最終ジャッジ日時 2024-06-07 20:22:29
合計ジャッジ時間 6,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,148 KB
testcase_01 AC 133 ms
53,824 KB
testcase_02 AC 136 ms
54,128 KB
testcase_03 AC 133 ms
54,056 KB
testcase_04 AC 134 ms
54,132 KB
testcase_05 AC 134 ms
54,032 KB
testcase_06 AC 134 ms
53,868 KB
testcase_07 AC 134 ms
54,124 KB
testcase_08 AC 132 ms
54,260 KB
testcase_09 AC 135 ms
54,216 KB
testcase_10 AC 134 ms
54,004 KB
testcase_11 AC 132 ms
53,912 KB
testcase_12 AC 132 ms
55,900 KB
testcase_13 AC 133 ms
54,232 KB
testcase_14 AC 131 ms
54,236 KB
testcase_15 AC 131 ms
53,928 KB
testcase_16 AC 134 ms
54,172 KB
testcase_17 AC 134 ms
53,988 KB
testcase_18 AC 135 ms
53,832 KB
testcase_19 AC 133 ms
54,396 KB
testcase_20 AC 136 ms
53,956 KB
testcase_21 AC 133 ms
53,988 KB
testcase_22 AC 135 ms
54,356 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();
    	int max = Math.max(a, b);
    	int min = Math.min(a, b);
    	if (max == min) {
    	    System.out.println(Math.sqrt(Math.pow(max, 2) + Math.pow(min, 2)));
    	} else {
    	    System.out.println(Math.sqrt(Math.pow(max, 2) - Math.pow(min, 2)));
    	}
	}
}
0