結果

問題 No.955 ax^2+bx+c=0
ユーザー uwiuwi
提出日時 2019-12-18 15:04:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 5,914 bytes
コンパイル時間 5,021 ms
コンパイル使用メモリ 86,740 KB
実行使用メモリ 56,932 KB
最終ジャッジ日時 2023-09-21 06:21:06
合計ジャッジ時間 18,043 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 43 ms
49,344 KB
testcase_03 AC 44 ms
49,828 KB
testcase_04 AC 44 ms
49,764 KB
testcase_05 AC 43 ms
49,884 KB
testcase_06 AC 43 ms
47,720 KB
testcase_07 AC 43 ms
49,552 KB
testcase_08 AC 44 ms
49,860 KB
testcase_09 AC 45 ms
49,676 KB
testcase_10 AC 44 ms
49,644 KB
testcase_11 AC 44 ms
49,556 KB
testcase_12 AC 44 ms
49,496 KB
testcase_13 AC 44 ms
49,408 KB
testcase_14 AC 78 ms
54,964 KB
testcase_15 AC 85 ms
54,952 KB
testcase_16 AC 79 ms
54,896 KB
testcase_17 AC 88 ms
55,112 KB
testcase_18 AC 87 ms
55,400 KB
testcase_19 AC 85 ms
54,988 KB
testcase_20 AC 91 ms
55,464 KB
testcase_21 AC 88 ms
55,264 KB
testcase_22 AC 88 ms
54,856 KB
testcase_23 AC 77 ms
55,128 KB
testcase_24 AC 88 ms
54,868 KB
testcase_25 AC 89 ms
54,992 KB
testcase_26 AC 87 ms
55,372 KB
testcase_27 AC 78 ms
54,796 KB
testcase_28 AC 86 ms
55,280 KB
testcase_29 AC 80 ms
55,048 KB
testcase_30 AC 79 ms
55,072 KB
testcase_31 AC 87 ms
55,200 KB
testcase_32 AC 90 ms
55,264 KB
testcase_33 AC 88 ms
55,052 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 45 ms
49,584 KB
testcase_61 AC 44 ms
49,576 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 43 ms
49,828 KB
testcase_65 WA -
testcase_66 AC 44 ms
49,500 KB
testcase_67 WA -
testcase_68 AC 44 ms
49,452 KB
testcase_69 WA -
testcase_70 WA -
testcase_71 AC 44 ms
49,624 KB
testcase_72 AC 44 ms
49,564 KB
testcase_73 WA -
testcase_74 WA -
testcase_75 AC 43 ms
49,364 KB
testcase_76 AC 44 ms
49,544 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 AC 43 ms
49,560 KB
testcase_81 WA -
testcase_82 AC 90 ms
55,100 KB
testcase_83 WA -
testcase_84 WA -
testcase_85 WA -
testcase_86 WA -
testcase_87 AC 88 ms
54,824 KB
testcase_88 AC 78 ms
55,316 KB
testcase_89 AC 76 ms
55,020 KB
testcase_90 WA -
testcase_91 WA -
testcase_92 AC 45 ms
49,496 KB
testcase_93 AC 45 ms
49,544 KB
testcase_94 WA -
testcase_95 WA -
testcase_96 WA -
testcase_97 WA -
testcase_98 WA -
testcase_99 WA -
testcase_100 AC 45 ms
49,672 KB
testcase_101 WA -
testcase_102 WA -
testcase_103 WA -
testcase_104 WA -
testcase_105 WA -
testcase_106 WA -
testcase_107 WA -
testcase_108 WA -
testcase_109 WA -
testcase_110 WA -
testcase_111 WA -
testcase_112 WA -
testcase_113 WA -
testcase_114 WA -
testcase_115 WA -
testcase_116 WA -
testcase_117 WA -
testcase_118 WA -
testcase_119 WA -
testcase_120 WA -
testcase_121 WA -
testcase_122 WA -
testcase_123 WA -
testcase_124 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package adv2019;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.math.BigDecimal;
import java.math.MathContext;
import java.util.Arrays;
import java.util.InputMismatchException;

public class D17_2 {
	InputStream is;
	PrintWriter out;
	String INPUT = "";
	
	void solve()
	{
		long a = nl(), b = nl(), c = nl();
		long[][] res = solveQuad(a, b, c);
		if(res == null){
			out.println(-1);
		}else{
			out.println(res.length);
			for(long[] u : res){
				out.println(
				BigDecimal.valueOf(u[1]).multiply(sqrt(u[2]), cx)
				.divide(BigDecimal.valueOf(u[3]), cx).toPlainString());
				
//				out.printf("%.20f\n", (u[0] + u[1] * Math.sqrt(u[2])) / u[3]);
			}
		}
	}
	
	MathContext cx = new MathContext(128);
	
	BigDecimal sqrt(long a)
	{
		BigDecimal cur = BigDecimal.ONE;
		// (x+a/x)/2
		for(int rep = 0;rep < 100;rep++){
			cur = cur.add(BigDecimal.valueOf(a).divide(cur, cx)).divide(BigDecimal.valueOf(2), cx);
		}
		return cur;
	}
	
	public static long[][] solveQuad(long A, long B, long C)
	{
		if(A == 0){
			if(B == 0){
				return C == 0 ? null : new long[0][];
			}else{
				return new long[][]{reducex(new long[]{-C, 0, 0, B})};
			}
		}
		
		long D = B*B-4*A*C;
		if(D < 0){
			return new long[0][];
		}else if(D == 0){
			return new long[][]{reducex(new long[]{-B, 0, 0, 2L*A})};
		}else{
			if(A > 0){
				return new long[][]{
						reducex(new long[]{-B, -1, D, 2L*A}),
						reducex(new long[]{-B, 1, D, 2L*A})
				};
			}else{
				return new long[][]{
						reducex(new long[]{-B, 1, D, 2L*A}),
						reducex(new long[]{-B, -1, D, 2L*A})
				};
			}
		}
	}
	
	public static long gcd(long a, long b) {
		while (b > 0) {
			long c = a;
			a = b;
			b = c % b;
		}
		return a;
	}
	
	
	public static long[] reducex(long[] f)
	{
		if(f[2] == 0)return f;
		long g = gcd(Math.abs(f[0]), Math.abs(f[3]));
		if(g == 0)return f;
		for(long p = 2;p*p <= g;p++){
			if(g % p == 0 && f[2] % (p*p) == 0){
				f[2] /= p*p;
				g /= p;
				f[0] /= p;
				f[3] /= p;
			}
		}
		
		return f;
//		// f[2] < 0 ??
//		if(f[2] == 0)f[1] = 0;
//		if(f[1] == 0)f[2] = 0;
//		if(f[2] == 0 || f[1] == 0){
//			// normal fraction
//			if(f[3] == 0) { // n/0
//				f[0] = 1;
//			}else if(f[0] == 0) { // 0/n
//				f[3] = 1;
//			}else {
//				if(f[3] < 0) { // -a/-b ->a/b
//					f[0] = -f[0];
//					f[3] = -f[3];
//				}
//				long a = Math.abs(f[0]), b = f[3];
//				while (b > 0) {
//					long c = a;
//					a = b;
//					b = c % b;
//				}
//				f[0] /= a;
//				f[3] /= a;
//			}
//		}else{
//			for(long p = 2;p * p <= f[2];p++){
//				while(f[2] % (p*p) == 0){
//					f[1] *= p;
//					f[2] /= p*p;
//				}
//			}
//			if(f[3] == 0) { // n/0
//				f[0] = 1;
//				f[1] = f[2] = 0;
//			}else {
//				if(f[3] < 0) { // -a/-b ->a/b
//					f[0] = -f[0];
//					f[1] = -f[1];
//					f[3] = -f[3];
//				}
//				long a = Math.abs(f[0]), b = f[3];
//				while (b > 0) {
//					long c = a;
//					a = b;
//					b = c % b;
//				}
//				b = Math.abs(f[1]);
//				while (b > 0) {
//					long c = a;
//					a = b;
//					b = c % b;
//				}
//				
//				f[0] /= a;
//				f[1] /= a;
//				f[3] /= a;
//			}
//		}
//		return f;
	}

	
	void run() throws Exception
	{
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);
		
		long s = System.currentTimeMillis();
		solve();
		out.flush();
		if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
//		Thread t = new Thread(null, null, "~", Runtime.getRuntime().maxMemory()){
//			@Override
//			public void run() {
//				long s = System.currentTimeMillis();
//				solve();
//				out.flush();
//				if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
//			}
//		};
//		t.start();
//		t.join();
	}
	
	public static void main(String[] args) throws Exception { new D17_2().run(); }
	
	private byte[] inbuf = new byte[1024];
	public int lenbuf = 0, ptrbuf = 0;
	
	private int readByte()
	{
		if(lenbuf == -1)throw new InputMismatchException();
		if(ptrbuf >= lenbuf){
			ptrbuf = 0;
			try { lenbuf = is.read(inbuf); } catch (IOException e) { throw new InputMismatchException(); }
			if(lenbuf <= 0)return -1;
		}
		return inbuf[ptrbuf++];
	}
	
	private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); }
	private int skip() { int b; while((b = readByte()) != -1 && isSpaceChar(b)); return b; }
	
	private double nd() { return Double.parseDouble(ns()); }
	private char nc() { return (char)skip(); }
	
	private String ns()
	{
		int b = skip();
		StringBuilder sb = new StringBuilder();
		while(!(isSpaceChar(b))){ // when nextLine, (isSpaceChar(b) && b != ' ')
			sb.appendCodePoint(b);
			b = readByte();
		}
		return sb.toString();
	}
	
	private char[] ns(int n)
	{
		char[] buf = new char[n];
		int b = skip(), p = 0;
		while(p < n && !(isSpaceChar(b))){
			buf[p++] = (char)b;
			b = readByte();
		}
		return n == p ? buf : Arrays.copyOf(buf, p);
	}
	
	private int[] na(int n)
	{
		int[] a = new int[n];
		for(int i = 0;i < n;i++)a[i] = ni();
		return a;
	}
	
	private long[] nal(int n)
	{
		long[] a = new long[n];
		for(int i = 0;i < n;i++)a[i] = nl();
		return a;
	}
	
	private char[][] nm(int n, int m) {
		char[][] map = new char[n][];
		for(int i = 0;i < n;i++)map[i] = ns(m);
		return map;
	}
	
	private int[][] nmi(int n, int m) {
		int[][] map = new int[n][];
		for(int i = 0;i < n;i++)map[i] = na(m);
		return map;
	}
	
	private int ni() { return (int)nl(); }
	
	private long nl()
	{
		long num = 0;
		int b;
		boolean minus = false;
		while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'));
		if(b == '-'){
			minus = true;
			b = readByte();
		}
		
		while(true){
			if(b >= '0' && b <= '9'){
				num = num * 10 + (b - '0');
			}else{
				return minus ? -num : num;
			}
			b = readByte();
		}
	}
	
	private static void tr(Object... o) { System.out.println(Arrays.deepToString(o)); }
}
0