結果

問題 No.419 直角三角形
ユーザー hermione17hermione17
提出日時 2016-09-09 22:35:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 3,297 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 41,924 KB
最終ジャッジ日時 2024-11-16 10:29:16
合計ジャッジ時間 7,006 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,552 KB
testcase_01 AC 123 ms
41,744 KB
testcase_02 AC 115 ms
40,940 KB
testcase_03 AC 122 ms
41,620 KB
testcase_04 AC 125 ms
41,640 KB
testcase_05 AC 113 ms
40,928 KB
testcase_06 AC 124 ms
41,472 KB
testcase_07 AC 130 ms
41,868 KB
testcase_08 WA -
testcase_09 AC 125 ms
41,924 KB
testcase_10 AC 126 ms
41,468 KB
testcase_11 AC 116 ms
40,876 KB
testcase_12 WA -
testcase_13 AC 124 ms
41,728 KB
testcase_14 AC 127 ms
41,608 KB
testcase_15 AC 128 ms
41,528 KB
testcase_16 AC 123 ms
40,912 KB
testcase_17 AC 126 ms
41,232 KB
testcase_18 AC 115 ms
40,664 KB
testcase_19 AC 124 ms
41,580 KB
testcase_20 AC 121 ms
41,284 KB
testcase_21 AC 124 ms
41,464 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = Math.sqrt(b*b - a*a);
	    
	    System.out.println(c);
	}
	public static void main(String argv[]) {
		new Y419();
	}
}
0