結果

問題 No.419 直角三角形
ユーザー hermione17hermione17
提出日時 2016-09-09 22:37:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 465 bytes
コンパイル時間 3,746 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 41,900 KB
最終ジャッジ日時 2024-11-16 10:30:19
合計ジャッジ時間 8,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,724 KB
testcase_01 AC 144 ms
41,300 KB
testcase_02 AC 146 ms
41,608 KB
testcase_03 AC 147 ms
41,652 KB
testcase_04 AC 149 ms
41,812 KB
testcase_05 AC 142 ms
41,736 KB
testcase_06 AC 149 ms
41,412 KB
testcase_07 AC 147 ms
41,716 KB
testcase_08 AC 144 ms
41,468 KB
testcase_09 AC 143 ms
41,712 KB
testcase_10 AC 146 ms
41,636 KB
testcase_11 AC 148 ms
41,712 KB
testcase_12 AC 142 ms
41,484 KB
testcase_13 AC 145 ms
41,752 KB
testcase_14 AC 143 ms
41,820 KB
testcase_15 AC 140 ms
41,608 KB
testcase_16 AC 142 ms
41,620 KB
testcase_17 AC 143 ms
41,624 KB
testcase_18 AC 130 ms
41,184 KB
testcase_19 AC 142 ms
41,804 KB
testcase_20 AC 148 ms
41,648 KB
testcase_21 AC 143 ms
41,636 KB
testcase_22 AC 152 ms
41,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Y419 {
	Y419() {
	    Scanner sc = new Scanner(System.in);
	    double a = sc.nextDouble();
	    double b= sc.nextDouble();
	    
	    if (a > b) {
	    	double tmp = a;
	    	a = b;
	    	b = tmp;
	    }
	    
	    double c;
	    if (a == b) {
	    	c = Math.sqrt(a*a*2);
	    } else {
	    	c = Math.sqrt(b*b - a*a);
	    }
	    
	    System.out.println(c);
	}
	public static void main(String argv[]) {
		new Y419();
	}
}
0