結果

問題 No.419 直角三角形
ユーザー maninimanini
提出日時 2016-09-11 01:11:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 309 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 73,840 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-11-17 00:10:35
合計ジャッジ時間 5,571 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,984 KB
testcase_01 AC 117 ms
41,284 KB
testcase_02 AC 122 ms
41,076 KB
testcase_03 AC 109 ms
39,892 KB
testcase_04 AC 123 ms
41,128 KB
testcase_05 AC 107 ms
39,808 KB
testcase_06 AC 118 ms
40,916 KB
testcase_07 AC 122 ms
41,192 KB
testcase_08 WA -
testcase_09 AC 125 ms
41,160 KB
testcase_10 AC 124 ms
41,012 KB
testcase_11 AC 123 ms
41,196 KB
testcase_12 WA -
testcase_13 AC 114 ms
39,692 KB
testcase_14 AC 110 ms
39,660 KB
testcase_15 AC 119 ms
40,992 KB
testcase_16 AC 123 ms
41,052 KB
testcase_17 AC 124 ms
41,024 KB
testcase_18 AC 126 ms
41,216 KB
testcase_19 AC 110 ms
40,132 KB
testcase_20 AC 119 ms
40,968 KB
testcase_21 AC 121 ms
41,060 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
 
public class Main{
 
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		long a=s.nextInt();
		long b=s.nextInt();
		
		long max=Math.max(a, b);
		long min=Math.min(a, b);
		
		double c=Math.sqrt((double)max*max-min*min);
		System.out.println(c);
	}
}
0