結果

問題 No.1179 Quadratic Equation
ユーザー tentententen
提出日時 2020-08-24 22:14:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 3,095 ms
コンパイル使用メモリ 76,428 KB
実行使用メモリ 54,940 KB
最終ジャッジ日時 2024-11-06 10:48:27
合計ジャッジ時間 4,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
52,752 KB
testcase_01 AC 160 ms
54,912 KB
testcase_02 AC 133 ms
54,100 KB
testcase_03 AC 131 ms
54,172 KB
testcase_04 AC 130 ms
54,212 KB
testcase_05 AC 162 ms
54,868 KB
testcase_06 AC 159 ms
54,908 KB
testcase_07 AC 158 ms
54,940 KB
testcase_08 AC 160 ms
54,908 KB
testcase_09 AC 156 ms
54,940 KB
testcase_10 AC 161 ms
54,884 KB
testcase_11 AC 129 ms
54,032 KB
testcase_12 AC 148 ms
54,676 KB
testcase_13 AC 161 ms
54,728 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 = b * b - 4 * a * c;
    	if (d < 0) {
    	    System.out.println("imaginary");
    	} else if (d == 0) {
    	    System.out.println(-b / 2/ a);
    	} else {
    	    double x = (-b - Math.sqrt(d)) / 2 / a;
    	    double y = (-b + Math.sqrt(d)) / 2 / a;
    	    System.out.println(Math.min(x, y) + " " + Math.max(x, y));
    	}
    }
}

0