結果

問題 No.419 直角三角形
ユーザー htensaihtensai
提出日時 2019-11-19 23:45:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 392 bytes
コンパイル時間 1,883 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-10-04 14:21:21
合計ジャッジ時間 5,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,028 KB
testcase_01 AC 115 ms
53,692 KB
testcase_02 AC 99 ms
52,504 KB
testcase_03 AC 110 ms
53,756 KB
testcase_04 AC 114 ms
53,788 KB
testcase_05 AC 121 ms
53,796 KB
testcase_06 AC 122 ms
54,164 KB
testcase_07 AC 119 ms
54,144 KB
testcase_08 AC 112 ms
52,880 KB
testcase_09 AC 109 ms
52,840 KB
testcase_10 AC 107 ms
52,560 KB
testcase_11 AC 110 ms
53,176 KB
testcase_12 AC 105 ms
52,888 KB
testcase_13 AC 113 ms
53,880 KB
testcase_14 AC 109 ms
53,816 KB
testcase_15 AC 99 ms
52,912 KB
testcase_16 AC 112 ms
54,264 KB
testcase_17 AC 96 ms
52,464 KB
testcase_18 AC 109 ms
53,968 KB
testcase_19 AC 112 ms
53,756 KB
testcase_20 AC 110 ms
54,060 KB
testcase_21 AC 110 ms
53,680 KB
testcase_22 AC 112 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		if (a == b) {
		    System.out.println(Math.sqrt(a * a + b * b));
		    return;
		}
		int max = Math.max(a, b);
		int min = Math.min(a, b);
		System.out.println(Math.sqrt(max * max - min * min));
	}
}
0