結果

問題 No.1178 Can you draw a Circle?
ユーザー ApassApass
提出日時 2020-08-21 23:35:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 1,224 bytes
コンパイル時間 4,850 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 41,300 KB
最終ジャッジ日時 2024-11-07 14:13:26
合計ジャッジ時間 6,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
39,892 KB
testcase_01 AC 123 ms
40,972 KB
testcase_02 AC 126 ms
41,200 KB
testcase_03 AC 123 ms
41,216 KB
testcase_04 AC 122 ms
41,300 KB
testcase_05 AC 122 ms
41,220 KB
testcase_06 AC 124 ms
41,012 KB
testcase_07 AC 123 ms
40,820 KB
testcase_08 AC 125 ms
41,020 KB
testcase_09 AC 119 ms
40,180 KB
testcase_10 AC 126 ms
40,876 KB
testcase_11 AC 124 ms
41,212 KB
testcase_12 AC 123 ms
41,168 KB
testcase_13 AC 124 ms
40,824 KB
testcase_14 AC 124 ms
41,036 KB
testcase_15 AC 121 ms
40,888 KB
testcase_16 AC 122 ms
40,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.*;
import java.io.*;
import java.util.ArrayList;
import java.util.StringTokenizer;
import java.util.stream.IntStream;

public class D_CanYouDrawACircle {
    private static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    private static final PrintWriter pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));
    private static StringTokenizer st;

    private static int readInt() throws IOException {
        while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine());
        return Integer.parseInt(st.nextToken());
    }

    public static void main(String[] args) throws IOException {
        solve();
        pw.close();
    }

    private static void solve() throws IOException {
        double a = readInt();
        double b = readInt();
        double c = readInt();
        double d = readInt();
        double e = readInt();
        double f = readInt();

        assert a == b;
        // a x 2 + b y 2 + c x + d y + e = f
        // r * r = (f-e-4 * c * c/a - 4 * d * d/b)/a
        double r = Math.sqrt((f - e + c * c / a / 4 + d * d / b / 4) / a);
        // wrong?!
        pw.printf("%.5f\n", r);
    }

}

0