結果

問題 No.419 直角三角形
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-12-18 14:07:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 3,026 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-05-08 06:35:49
合計ジャッジ時間 6,827 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,304 KB
testcase_01 AC 127 ms
54,104 KB
testcase_02 AC 124 ms
53,912 KB
testcase_03 AC 115 ms
52,984 KB
testcase_04 AC 115 ms
52,940 KB
testcase_05 AC 124 ms
54,116 KB
testcase_06 AC 124 ms
53,728 KB
testcase_07 AC 117 ms
52,700 KB
testcase_08 WA -
testcase_09 AC 126 ms
53,928 KB
testcase_10 AC 126 ms
53,976 KB
testcase_11 AC 125 ms
53,780 KB
testcase_12 WA -
testcase_13 AC 125 ms
54,096 KB
testcase_14 AC 119 ms
52,752 KB
testcase_15 AC 124 ms
54,088 KB
testcase_16 AC 126 ms
54,084 KB
testcase_17 AC 123 ms
53,860 KB
testcase_18 AC 124 ms
54,232 KB
testcase_19 AC 124 ms
53,804 KB
testcase_20 AC 123 ms
54,036 KB
testcase_21 AC 130 ms
54,444 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