結果

問題 No.419 直角三角形
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-12-18 14:14:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 399 bytes
コンパイル時間 4,757 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-12-14 08:20:52
合計ジャッジ時間 7,882 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,256 KB
testcase_01 AC 133 ms
41,400 KB
testcase_02 AC 128 ms
41,376 KB
testcase_03 AC 129 ms
41,204 KB
testcase_04 AC 129 ms
41,100 KB
testcase_05 AC 115 ms
39,852 KB
testcase_06 AC 130 ms
41,172 KB
testcase_07 AC 115 ms
40,064 KB
testcase_08 AC 127 ms
41,368 KB
testcase_09 AC 129 ms
41,104 KB
testcase_10 AC 130 ms
41,508 KB
testcase_11 AC 116 ms
40,068 KB
testcase_12 AC 130 ms
41,464 KB
testcase_13 AC 119 ms
39,928 KB
testcase_14 AC 115 ms
40,232 KB
testcase_15 AC 130 ms
41,352 KB
testcase_16 AC 121 ms
41,384 KB
testcase_17 AC 117 ms
39,856 KB
testcase_18 AC 117 ms
39,860 KB
testcase_19 AC 129 ms
41,540 KB
testcase_20 AC 130 ms
41,528 KB
testcase_21 AC 130 ms
41,316 KB
testcase_22 AC 131 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

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