結果

問題 No.1178 Can you draw a Circle?
ユーザー tentententen
提出日時 2020-12-29 12:54:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 452 bytes
コンパイル時間 2,990 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-10-05 10:26:58
合計ジャッジ時間 4,461 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 103 ms
41,384 KB
testcase_02 AC 101 ms
41,248 KB
testcase_03 AC 112 ms
41,500 KB
testcase_04 AC 112 ms
41,256 KB
testcase_05 AC 118 ms
41,112 KB
testcase_06 WA -
testcase_07 AC 113 ms
41,124 KB
testcase_08 AC 100 ms
41,416 KB
testcase_09 AC 112 ms
40,976 KB
testcase_10 AC 111 ms
41,456 KB
testcase_11 WA -
testcase_12 AC 120 ms
41,384 KB
testcase_13 AC 118 ms
41,456 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        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();
        f += c * c / 4 / a / a + d * d / 4 / b / b - e;
        System.out.println(Math.sqrt(f));
    }
}
0