結果

問題 No.419 直角三角形
ユーザー 37zigen37zigen
提出日時 2016-09-10 01:34:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 406 bytes
コンパイル時間 3,095 ms
コンパイル使用メモリ 75,752 KB
実行使用メモリ 41,740 KB
最終ジャッジ日時 2024-11-16 19:31:48
合計ジャッジ時間 7,710 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,920 KB
testcase_01 AC 123 ms
40,688 KB
testcase_02 AC 129 ms
40,644 KB
testcase_03 AC 131 ms
41,740 KB
testcase_04 AC 119 ms
41,024 KB
testcase_05 AC 126 ms
41,388 KB
testcase_06 AC 127 ms
41,632 KB
testcase_07 AC 132 ms
41,256 KB
testcase_08 AC 121 ms
40,904 KB
testcase_09 AC 119 ms
40,888 KB
testcase_10 AC 130 ms
41,004 KB
testcase_11 AC 128 ms
41,212 KB
testcase_12 AC 132 ms
41,248 KB
testcase_13 AC 135 ms
41,640 KB
testcase_14 AC 130 ms
41,568 KB
testcase_15 AC 122 ms
41,420 KB
testcase_16 AC 134 ms
41,352 KB
testcase_17 AC 127 ms
41,532 KB
testcase_18 AC 129 ms
41,364 KB
testcase_19 AC 129 ms
41,672 KB
testcase_20 AC 126 ms
40,700 KB
testcase_21 AC 124 ms
41,104 KB
testcase_22 AC 126 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

import java.util.Scanner;

public class Q419 {
	public static void main(String[] args) {
		new Q419().solver();
	}

	void solver() {
		Scanner sc = new Scanner(System.in);
		double a = sc.nextDouble();
		double b = sc.nextDouble();
		double ans = -1;
		if (a != b)
			ans = Math.sqrt(Math.abs(a * a - b * b));
		else
			ans = Math.sqrt(a * a + b * b);
		System.out.println(ans);
	}
}
0