結果

問題 No.419 直角三角形
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 17:58:37
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 1,000 ms
コード長 372 bytes
コンパイル時間 3,351 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-12-26 08:12:55
合計ジャッジ時間 7,512 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,656 KB
testcase_01 AC 138 ms
41,700 KB
testcase_02 AC 137 ms
41,516 KB
testcase_03 AC 134 ms
41,564 KB
testcase_04 AC 133 ms
41,180 KB
testcase_05 AC 130 ms
40,788 KB
testcase_06 AC 131 ms
41,456 KB
testcase_07 AC 132 ms
41,512 KB
testcase_08 AC 144 ms
41,632 KB
testcase_09 AC 133 ms
41,496 KB
testcase_10 AC 148 ms
41,616 KB
testcase_11 AC 138 ms
41,324 KB
testcase_12 AC 148 ms
41,420 KB
testcase_13 AC 130 ms
41,428 KB
testcase_14 AC 142 ms
41,416 KB
testcase_15 AC 122 ms
41,556 KB
testcase_16 AC 131 ms
41,552 KB
testcase_17 AC 122 ms
41,600 KB
testcase_18 AC 142 ms
41,028 KB
testcase_19 AC 135 ms
41,672 KB
testcase_20 AC 123 ms
41,544 KB
testcase_21 AC 141 ms
41,472 KB
testcase_22 AC 135 ms
41,580 KB
権限があれば一括ダウンロードができます

ソースコード

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