結果

問題 No.419 直角三角形
ユーザー fjafjafjafjafjafja
提出日時 2017-09-11 00:16:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 312 bytes
コンパイル時間 3,387 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-11-07 12:54:45
合計ジャッジ時間 7,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,096 KB
testcase_01 AC 131 ms
41,460 KB
testcase_02 AC 129 ms
41,204 KB
testcase_03 AC 129 ms
41,492 KB
testcase_04 AC 129 ms
41,360 KB
testcase_05 AC 126 ms
41,196 KB
testcase_06 AC 129 ms
41,268 KB
testcase_07 AC 114 ms
40,288 KB
testcase_08 AC 127 ms
41,328 KB
testcase_09 AC 134 ms
41,540 KB
testcase_10 AC 127 ms
41,328 KB
testcase_11 AC 126 ms
41,540 KB
testcase_12 AC 122 ms
41,264 KB
testcase_13 AC 119 ms
40,880 KB
testcase_14 AC 127 ms
41,372 KB
testcase_15 AC 128 ms
41,516 KB
testcase_16 AC 126 ms
41,236 KB
testcase_17 AC 126 ms
41,448 KB
testcase_18 AC 126 ms
41,792 KB
testcase_19 AC 108 ms
39,844 KB
testcase_20 AC 113 ms
40,556 KB
testcase_21 AC 113 ms
40,308 KB
testcase_22 AC 125 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N419
{

	public static void main(String[] args)
	{
		Scanner sc=new Scanner (System.in);
		int a=sc.nextInt(),b=sc.nextInt();
		double c=0;
		if(a!=b){c=Math.sqrt(Math.abs(a*a-b*b));}
		else{c=Math.sqrt(a*a+b*b);}
		System.out.printf("%.7f\n",c);
	}

}
0