結果

問題 No.419 直角三角形
ユーザー GrenacheGrenache
提出日時 2016-09-09 22:26:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 672 bytes
コンパイル時間 3,455 ms
コンパイル使用メモリ 75,476 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-04-28 01:57:36
合計ジャッジ時間 7,406 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,032 KB
testcase_01 AC 130 ms
54,148 KB
testcase_02 AC 131 ms
54,224 KB
testcase_03 AC 131 ms
54,420 KB
testcase_04 AC 132 ms
54,164 KB
testcase_05 AC 118 ms
53,040 KB
testcase_06 AC 132 ms
54,320 KB
testcase_07 AC 135 ms
54,408 KB
testcase_08 AC 134 ms
54,220 KB
testcase_09 AC 136 ms
54,288 KB
testcase_10 AC 135 ms
54,132 KB
testcase_11 AC 134 ms
54,280 KB
testcase_12 AC 134 ms
54,140 KB
testcase_13 AC 134 ms
53,992 KB
testcase_14 AC 133 ms
54,208 KB
testcase_15 AC 136 ms
54,128 KB
testcase_16 AC 134 ms
53,944 KB
testcase_17 AC 134 ms
53,840 KB
testcase_18 AC 133 ms
54,476 KB
testcase_19 AC 132 ms
53,896 KB
testcase_20 AC 136 ms
54,160 KB
testcase_21 AC 120 ms
53,076 KB
testcase_22 AC 133 ms
54,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder419 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int a = sc.nextInt();
		int b = sc.nextInt();

		double c;
		if (a == b) {
			c = Math.sqrt(a * a + b * b);
		} else {
			c = Math.sqrt(Math.abs(a * a - b * b));
		}

		pr.printf("%.7f\n", c);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0