結果

問題 No.419 直角三角形
ユーザー YamaKasaYamaKasa
提出日時 2018-09-20 00:56:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 444 bytes
コンパイル時間 1,767 ms
コンパイル使用メモリ 74,052 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-07-18 08:24:08
合計ジャッジ時間 5,160 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,200 KB
testcase_01 AC 116 ms
53,920 KB
testcase_02 AC 114 ms
54,120 KB
testcase_03 AC 114 ms
53,840 KB
testcase_04 AC 105 ms
53,792 KB
testcase_05 AC 121 ms
53,848 KB
testcase_06 AC 116 ms
54,196 KB
testcase_07 AC 112 ms
53,992 KB
testcase_08 AC 117 ms
54,056 KB
testcase_09 AC 115 ms
54,072 KB
testcase_10 AC 104 ms
53,000 KB
testcase_11 AC 112 ms
53,940 KB
testcase_12 AC 105 ms
52,864 KB
testcase_13 AC 115 ms
54,108 KB
testcase_14 AC 102 ms
52,640 KB
testcase_15 AC 124 ms
54,016 KB
testcase_16 AC 122 ms
54,088 KB
testcase_17 AC 122 ms
53,944 KB
testcase_18 AC 103 ms
52,908 KB
testcase_19 AC 114 ms
54,040 KB
testcase_20 AC 116 ms
54,300 KB
testcase_21 AC 113 ms
53,992 KB
testcase_22 AC 106 ms
54,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long a = scan.nextLong();
		long b = scan.nextLong();
		scan.close();
		if(a == b) {
			double ans = Math.sqrt(a * a + b * b);
			System.out.println(ans);
		}else {
			long min = Math.min(a, b);
			long max = Math.max(a, b);
			double ans = Math.sqrt(max * max - min * min);
			System.out.println(ans);
		}

	}
}
0