結果

問題 No.955 ax^2+bx+c=0
ユーザー 37zigen37zigen
提出日時 2019-12-18 01:24:47
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 2,278 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 83,276 KB
実行使用メモリ 56,268 KB
最終ジャッジ日時 2024-07-07 00:10:02
合計ジャッジ時間 17,514 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 99 WA * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.math.MathContext;
import java.util.*;
import java.io.*;
import java.math.*;

class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long a = sc.nextLong();
		long b = sc.nextLong();
		long c = sc.nextLong();
//		for (long a = -10; a <= 10; ++a)
//			for (long b = -10; b <= 10; ++b)
//				for (long c = -10; c <= 10; ++c)
		new Main().run(a, b, c);
	}

	void run(long a, long b, long c) {
		if (a < 0) {
			a *= -1;
			b *= -1;
			c *= -1;
		}
		if (a == 0 && b == 0 && c == 0) {// 0x^2+0x+0=0
			System.out.println(-1);
			return;
		} else if (a == 0 && b == 0 && c != 0) {// 0x^2+0x+c=0
			System.out.println(0);
		} else if (a == 0) {// 0x^2+bx+c=0
			// b!=0
			System.out.println(1);
			System.out.println(c / b);
		} else if (a != 0) {
			BigDecimal DD = BigDecimal.valueOf(b * b)
					.subtract(BigDecimal.valueOf(4).multiply(BigDecimal.valueOf(a * c)));
			if (DD.compareTo(BigDecimal.ZERO) == -1) {
				System.out.println(0);
			} else if (DD.compareTo(BigDecimal.ZERO) == 0) {
				System.out.println(1);
				System.out.println(BigDecimal.valueOf(-b).divide(BigDecimal.valueOf(2 * a), BigDecimal.ROUND_HALF_UP));
			} else {
				System.out.println(2);
				double x1 = BigDecimal.valueOf(-b).subtract(sqrt(DD, 50))
						.divide(BigDecimal.valueOf(2 * a), BigDecimal.ROUND_HALF_UP).doubleValue();
				double x2 = BigDecimal.valueOf(-b).add(sqrt(DD, 50))
						.divide(BigDecimal.valueOf(2 * a), BigDecimal.ROUND_HALF_UP).doubleValue();// (double)(-b+Math.sqrt(DD))/(2*a));
				if (x1 > x2) {
					double tmp = x1;
					x1 = x2;
					x2 = tmp;
				}
				System.out.println(x1);
				System.out.println(x2);
			}

		}
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

	public static BigDecimal sqrt(BigDecimal a, int scale) {
		// とりあえずdoubleのsqrtを求める
		BigDecimal x = new BigDecimal(Math.sqrt(a.doubleValue()), MathContext.DECIMAL64);
		if (scale < 17)
			return x;

		BigDecimal b2 = new BigDecimal(2);
		for (int tempScale = 16; tempScale < scale; tempScale *= 2) {
			// x = x - (x * x - a) / (2 * x);
			x = x.subtract(x.multiply(x).subtract(a).divide(x.multiply(b2), scale, BigDecimal.ROUND_HALF_EVEN));
		}
		return x;
	}
}
0