結果

問題 No.419 直角三角形
ユーザー takeya_okinotakeya_okino
提出日時 2017-10-27 21:11:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-11-21 21:26:56
合計ジャッジ時間 6,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,492 KB
testcase_01 AC 134 ms
41,820 KB
testcase_02 AC 135 ms
41,760 KB
testcase_03 AC 129 ms
40,852 KB
testcase_04 AC 135 ms
41,520 KB
testcase_05 AC 124 ms
41,784 KB
testcase_06 AC 136 ms
41,844 KB
testcase_07 AC 126 ms
41,012 KB
testcase_08 WA -
testcase_09 AC 135 ms
41,688 KB
testcase_10 AC 130 ms
41,468 KB
testcase_11 AC 134 ms
41,576 KB
testcase_12 WA -
testcase_13 AC 130 ms
41,012 KB
testcase_14 AC 135 ms
41,548 KB
testcase_15 AC 119 ms
41,188 KB
testcase_16 AC 132 ms
41,392 KB
testcase_17 AC 136 ms
41,820 KB
testcase_18 AC 138 ms
41,696 KB
testcase_19 AC 136 ms
41,452 KB
testcase_20 AC 136 ms
41,512 KB
testcase_21 AC 134 ms
41,708 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
    System.out.println(ans);
  }
}
0