結果

問題 No.419 直角三角形
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 17:56:04
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 6,448 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 41,884 KB
最終ジャッジ日時 2024-12-26 08:04:47
合計ジャッジ時間 10,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
41,484 KB
testcase_01 AC 177 ms
41,184 KB
testcase_02 AC 175 ms
41,332 KB
testcase_03 AC 168 ms
41,544 KB
testcase_04 AC 171 ms
41,564 KB
testcase_05 AC 176 ms
41,216 KB
testcase_06 AC 176 ms
41,612 KB
testcase_07 AC 179 ms
41,632 KB
testcase_08 WA -
testcase_09 AC 178 ms
41,432 KB
testcase_10 AC 174 ms
41,512 KB
testcase_11 AC 173 ms
41,648 KB
testcase_12 WA -
testcase_13 AC 185 ms
41,600 KB
testcase_14 AC 174 ms
41,304 KB
testcase_15 AC 181 ms
41,696 KB
testcase_16 AC 175 ms
41,352 KB
testcase_17 AC 178 ms
41,432 KB
testcase_18 AC 173 ms
41,356 KB
testcase_19 AC 171 ms
41,604 KB
testcase_20 AC 174 ms
41,884 KB
testcase_21 AC 172 ms
41,176 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No419 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double a = sc.nextDouble();
		double b = sc.nextDouble();
		
		System.out.println(Math.sqrt(Math.pow(Math.max(a, b), 2) - Math.pow(Math.min(a, b), 2)));
	}
}
0