結果

問題 No.419 直角三角形
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-29 19:50:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-11-19 08:09:48
合計ジャッジ時間 5,872 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,312 KB
testcase_01 AC 127 ms
41,040 KB
testcase_02 AC 117 ms
41,492 KB
testcase_03 AC 126 ms
41,132 KB
testcase_04 AC 126 ms
41,248 KB
testcase_05 AC 130 ms
41,492 KB
testcase_06 AC 122 ms
41,044 KB
testcase_07 AC 126 ms
41,104 KB
testcase_08 WA -
testcase_09 AC 124 ms
41,448 KB
testcase_10 AC 122 ms
41,476 KB
testcase_11 AC 127 ms
41,216 KB
testcase_12 WA -
testcase_13 AC 127 ms
41,300 KB
testcase_14 AC 124 ms
41,240 KB
testcase_15 AC 115 ms
41,244 KB
testcase_16 AC 130 ms
41,120 KB
testcase_17 AC 127 ms
40,828 KB
testcase_18 AC 125 ms
41,244 KB
testcase_19 AC 124 ms
41,220 KB
testcase_20 AC 118 ms
40,268 KB
testcase_21 AC 123 ms
41,480 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int a=scanner.nextInt();
		int b=scanner.nextInt();
		double c=Math.pow(Math.max(a, b),2)-Math.pow(Math.min(a, b), 2);
		System.out.println(Math.sqrt(c));
	}
}
0