結果

問題 No.419 直角三角形
ユーザー GrenacheGrenache
提出日時 2016-09-09 22:26:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 672 bytes
コンパイル時間 3,295 ms
コンパイル使用メモリ 75,328 KB
実行使用メモリ 44,624 KB
最終ジャッジ日時 2024-11-16 10:05:10
合計ジャッジ時間 7,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,128 KB
testcase_01 AC 132 ms
41,188 KB
testcase_02 AC 129 ms
41,108 KB
testcase_03 AC 130 ms
41,316 KB
testcase_04 AC 131 ms
44,624 KB
testcase_05 AC 116 ms
41,100 KB
testcase_06 AC 132 ms
40,580 KB
testcase_07 AC 134 ms
41,372 KB
testcase_08 AC 117 ms
41,172 KB
testcase_09 AC 131 ms
41,396 KB
testcase_10 AC 131 ms
41,292 KB
testcase_11 AC 129 ms
41,160 KB
testcase_12 AC 116 ms
40,716 KB
testcase_13 AC 139 ms
41,396 KB
testcase_14 AC 134 ms
41,212 KB
testcase_15 AC 134 ms
40,900 KB
testcase_16 AC 130 ms
41,156 KB
testcase_17 AC 131 ms
41,300 KB
testcase_18 AC 129 ms
40,952 KB
testcase_19 AC 127 ms
40,996 KB
testcase_20 AC 129 ms
41,036 KB
testcase_21 AC 131 ms
41,136 KB
testcase_22 AC 130 ms
41,000 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