結果

問題 No.1178 Can you draw a Circle?
ユーザー tentententen
提出日時 2021-02-04 21:01:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 2,037 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 54,524 KB
最終ジャッジ日時 2024-07-01 02:24:00
合計ジャッジ時間 5,162 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,128 KB
testcase_01 AC 132 ms
54,096 KB
testcase_02 AC 132 ms
54,256 KB
testcase_03 AC 135 ms
54,140 KB
testcase_04 AC 131 ms
53,976 KB
testcase_05 AC 131 ms
54,380 KB
testcase_06 AC 130 ms
54,324 KB
testcase_07 AC 133 ms
53,996 KB
testcase_08 AC 133 ms
54,060 KB
testcase_09 AC 134 ms
54,100 KB
testcase_10 AC 135 ms
54,240 KB
testcase_11 AC 132 ms
54,032 KB
testcase_12 AC 132 ms
54,324 KB
testcase_13 AC 131 ms
54,176 KB
testcase_14 AC 132 ms
54,056 KB
testcase_15 AC 131 ms
54,096 KB
testcase_16 AC 131 ms
54,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double a = sc.nextInt();
        double b = sc.nextInt();
        double c = sc.nextInt();
        double d = sc.nextInt();
        double e = sc.nextInt();
        double f = sc.nextInt();
        double pow2 = f - e + c * c / a / 4 + d * d / b / 4;
        System.out.println(Math.sqrt(pow2 / a));
    }
}
0