結果

問題 No.419 直角三角形
ユーザー 37zigen37zigen
提出日時 2016-09-10 01:33:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 338 bytes
コンパイル時間 4,075 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 42,180 KB
最終ジャッジ日時 2024-11-16 19:31:37
合計ジャッジ時間 8,573 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,764 KB
testcase_01 AC 146 ms
41,928 KB
testcase_02 AC 145 ms
42,004 KB
testcase_03 AC 146 ms
41,792 KB
testcase_04 AC 146 ms
41,764 KB
testcase_05 AC 147 ms
41,872 KB
testcase_06 AC 143 ms
41,824 KB
testcase_07 AC 144 ms
41,956 KB
testcase_08 WA -
testcase_09 AC 145 ms
41,784 KB
testcase_10 AC 148 ms
42,180 KB
testcase_11 AC 144 ms
41,444 KB
testcase_12 WA -
testcase_13 AC 131 ms
41,900 KB
testcase_14 AC 144 ms
42,004 KB
testcase_15 AC 144 ms
41,836 KB
testcase_16 AC 143 ms
41,512 KB
testcase_17 AC 144 ms
41,768 KB
testcase_18 AC 147 ms
41,772 KB
testcase_19 AC 146 ms
41,516 KB
testcase_20 AC 145 ms
41,652 KB
testcase_21 AC 153 ms
41,664 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = Math.sqrt(Math.abs(a * a - b * b));
		System.out.println(ans);
	}
}
0