結果

問題 No.419 直角三角形
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-12-18 14:07:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 4,106 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-12-14 08:19:33
合計ジャッジ時間 8,220 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,216 KB
testcase_01 AC 136 ms
41,080 KB
testcase_02 AC 139 ms
41,212 KB
testcase_03 AC 137 ms
41,528 KB
testcase_04 AC 137 ms
41,084 KB
testcase_05 AC 138 ms
41,392 KB
testcase_06 AC 139 ms
41,380 KB
testcase_07 AC 137 ms
41,672 KB
testcase_08 WA -
testcase_09 AC 141 ms
41,548 KB
testcase_10 AC 140 ms
41,520 KB
testcase_11 AC 138 ms
41,244 KB
testcase_12 WA -
testcase_13 AC 139 ms
40,976 KB
testcase_14 AC 138 ms
41,468 KB
testcase_15 AC 134 ms
41,364 KB
testcase_16 AC 136 ms
41,208 KB
testcase_17 AC 136 ms
41,304 KB
testcase_18 AC 138 ms
41,456 KB
testcase_19 AC 135 ms
41,216 KB
testcase_20 AC 136 ms
41,636 KB
testcase_21 AC 135 ms
41,268 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No_419 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	int a = sc.nextInt();
	int b = sc.nextInt();
	sc.close();
	double abs = Math.abs(Math.pow(a, 2) - Math.pow(b, 2));
	double c = Math.sqrt(abs);
	System.out.println(c);
}
}
0