結果

問題 No.419 直角三角形
ユーザー htensaihtensai
提出日時 2019-11-19 23:43:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 74,696 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-10-04 14:18:00
合計ジャッジ時間 6,005 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,312 KB
testcase_01 AC 122 ms
54,008 KB
testcase_02 AC 123 ms
54,000 KB
testcase_03 AC 120 ms
54,216 KB
testcase_04 AC 122 ms
53,892 KB
testcase_05 AC 125 ms
54,176 KB
testcase_06 AC 129 ms
54,148 KB
testcase_07 AC 124 ms
54,336 KB
testcase_08 WA -
testcase_09 AC 125 ms
54,072 KB
testcase_10 AC 125 ms
54,208 KB
testcase_11 AC 115 ms
52,800 KB
testcase_12 WA -
testcase_13 AC 131 ms
54,176 KB
testcase_14 AC 125 ms
54,248 KB
testcase_15 AC 126 ms
54,112 KB
testcase_16 AC 122 ms
53,940 KB
testcase_17 AC 111 ms
53,000 KB
testcase_18 AC 127 ms
53,940 KB
testcase_19 AC 125 ms
54,240 KB
testcase_20 AC 127 ms
54,264 KB
testcase_21 AC 127 ms
53,904 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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