結果

問題 No.419 直角三角形
ユーザー takeya_okinotakeya_okino
提出日時 2017-10-27 21:12:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 387 bytes
コンパイル時間 1,991 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 41,836 KB
最終ジャッジ日時 2024-11-21 21:27:02
合計ジャッジ時間 5,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,688 KB
testcase_01 AC 136 ms
41,628 KB
testcase_02 AC 135 ms
40,996 KB
testcase_03 AC 137 ms
41,728 KB
testcase_04 AC 134 ms
41,628 KB
testcase_05 AC 137 ms
41,548 KB
testcase_06 AC 137 ms
41,692 KB
testcase_07 AC 124 ms
41,052 KB
testcase_08 AC 140 ms
41,704 KB
testcase_09 AC 141 ms
41,572 KB
testcase_10 AC 123 ms
41,492 KB
testcase_11 AC 122 ms
41,716 KB
testcase_12 AC 138 ms
41,392 KB
testcase_13 AC 134 ms
41,628 KB
testcase_14 AC 124 ms
40,692 KB
testcase_15 AC 137 ms
41,836 KB
testcase_16 AC 135 ms
41,608 KB
testcase_17 AC 136 ms
41,056 KB
testcase_18 AC 134 ms
41,396 KB
testcase_19 AC 137 ms
41,480 KB
testcase_20 AC 132 ms
41,492 KB
testcase_21 AC 134 ms
41,596 KB
testcase_22 AC 134 ms
41,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    double a = sc.nextDouble();
    double b = sc.nextDouble();
    double m = Math.min(a, b);
    double M = Math.max(a, b);
    double ans = (double)Math.sqrt(M * M - m * m);
    if(m == M) ans = (double)Math.sqrt(2 * m * m);
    System.out.println(ans);
  }
}
0