結果

問題 No.735 接線
ユーザー masamasa
提出日時 2019-01-11 16:23:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 2,656 ms
コンパイル使用メモリ 83,328 KB
実行使用メモリ 42,036 KB
最終ジャッジ日時 2024-05-06 13:55:47
合計ジャッジ時間 8,461 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,892 KB
testcase_01 AC 143 ms
42,024 KB
testcase_02 AC 145 ms
41,332 KB
testcase_03 AC 146 ms
41,868 KB
testcase_04 AC 142 ms
41,788 KB
testcase_05 AC 140 ms
41,452 KB
testcase_06 AC 142 ms
41,640 KB
testcase_07 AC 145 ms
41,616 KB
testcase_08 AC 143 ms
41,412 KB
testcase_09 AC 136 ms
41,228 KB
testcase_10 AC 142 ms
41,624 KB
testcase_11 AC 142 ms
41,652 KB
testcase_12 AC 141 ms
41,384 KB
testcase_13 AC 145 ms
41,580 KB
testcase_14 AC 143 ms
41,328 KB
testcase_15 AC 143 ms
41,768 KB
testcase_16 AC 148 ms
41,644 KB
testcase_17 AC 142 ms
41,396 KB
testcase_18 AC 140 ms
41,256 KB
testcase_19 AC 148 ms
41,556 KB
testcase_20 AC 145 ms
41,420 KB
testcase_21 AC 144 ms
41,656 KB
testcase_22 AC 146 ms
41,912 KB
testcase_23 AC 148 ms
42,036 KB
testcase_24 AC 145 ms
42,036 KB
testcase_25 AC 144 ms
41,232 KB
testcase_26 AC 146 ms
41,600 KB
testcase_27 AC 145 ms
41,352 KB
testcase_28 AC 145 ms
41,756 KB
testcase_29 AC 144 ms
41,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.Math;

public class Main {
    public static double square(double a) {
        return a * a;
    }
    
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        double a = sc.nextDouble();
        double b = sc.nextDouble();
        double c = square(b) - square(a);
        
        double answer = Math.sqrt(c);
        
        
        System.out.println(answer);
    }
}
0