結果

問題 No.955 ax^2+bx+c=0
ユーザー OlandOland
提出日時 2019-12-22 13:48:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 6,825 bytes
コンパイル時間 5,739 ms
コンパイル使用メモリ 75,476 KB
実行使用メモリ 51,832 KB
最終ジャッジ日時 2023-10-12 05:58:31
合計ジャッジ時間 14,797 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
50,064 KB
testcase_01 AC 46 ms
49,460 KB
testcase_02 AC 44 ms
49,280 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 44 ms
49,880 KB
testcase_25 AC 44 ms
49,328 KB
testcase_26 AC 46 ms
49,412 KB
testcase_27 AC 45 ms
49,600 KB
testcase_28 AC 44 ms
49,372 KB
testcase_29 AC 44 ms
49,532 KB
testcase_30 AC 43 ms
49,460 KB
testcase_31 AC 43 ms
49,576 KB
testcase_32 AC 43 ms
49,392 KB
testcase_33 AC 46 ms
49,428 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 AC 44 ms
49,440 KB
testcase_59 WA -
testcase_60 AC 44 ms
49,300 KB
testcase_61 AC 45 ms
49,336 KB
testcase_62 AC 44 ms
49,456 KB
testcase_63 WA -
testcase_64 AC 44 ms
49,364 KB
testcase_65 WA -
testcase_66 AC 43 ms
49,488 KB
testcase_67 AC 44 ms
49,628 KB
testcase_68 AC 43 ms
49,512 KB
testcase_69 AC 44 ms
49,412 KB
testcase_70 WA -
testcase_71 AC 43 ms
49,388 KB
testcase_72 AC 46 ms
50,008 KB
testcase_73 AC 44 ms
49,524 KB
testcase_74 AC 43 ms
49,476 KB
testcase_75 AC 43 ms
49,288 KB
testcase_76 AC 43 ms
48,036 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 AC 43 ms
49,280 KB
testcase_81 AC 43 ms
49,396 KB
testcase_82 AC 43 ms
49,568 KB
testcase_83 AC 44 ms
49,408 KB
testcase_84 AC 43 ms
49,480 KB
testcase_85 AC 43 ms
49,604 KB
testcase_86 AC 43 ms
49,524 KB
testcase_87 AC 44 ms
49,508 KB
testcase_88 AC 43 ms
49,408 KB
testcase_89 AC 45 ms
49,416 KB
testcase_90 AC 44 ms
49,372 KB
testcase_91 AC 44 ms
49,336 KB
testcase_92 WA -
testcase_93 WA -
testcase_94 AC 44 ms
49,392 KB
testcase_95 AC 44 ms
49,332 KB
testcase_96 AC 44 ms
49,464 KB
testcase_97 AC 46 ms
49,384 KB
testcase_98 AC 44 ms
49,520 KB
testcase_99 AC 44 ms
49,368 KB
testcase_100 WA -
testcase_101 AC 45 ms
49,460 KB
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 AC 44 ms
49,468 KB
testcase_124 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

@SuppressWarnings("unused")
public class Main {
    FastScanner in;
    PrintWriter out;
    int MOD = (int)1e9+7;
    long ceil(long a, long b){return (a + b - 1) / b;}
    long gcd(long a, long b){return b == 0 ? a : gcd(b, a % b);}
    long lcm(long a, long b){return a / gcd(a, b) * b;}
    
    void solve() {
        long a = in.nextLong(), b = in.nextLong(), c = in.nextLong(), d = b * b - 4 * a * c;
        double e = (double)(-b);
        if(d == 0){
            out.println("1");
            out.println(e / 2 / a);
        }else if(d > 0){
            double f = Math.sqrt((double)d);
            out.println("2");
            out.println((e - f) / 2 / a);
            out.println((e + f) / 2 / a);
        }else{
            out.println("0");
        }
    }
    
    public static void main(String[] args) {
        new Main().m();
    }
    
    private void m() {
        in = new FastScanner(System.in);
        out = new PrintWriter(System.out);
        /*
        try {
            String path = "output.txt";
            out = new PrintWriter(new BufferedWriter(new FileWriter(new File(path))));
        }catch (IOException e){
            e.printStackTrace();
        }
        */
        solve();
        out.flush();
        in.close();
        out.close();
    }
    
    static class FastScanner {
        private Reader input;
        
        public FastScanner() {this(System.in);}
        public FastScanner(InputStream stream) {this.input = new BufferedReader(new InputStreamReader(stream));}
        public void close() {
            try {
                this.input.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        
        public int nextInt() {return (int) nextLong();}
        
        public long nextLong() {
            try {
                int sign = 1;
                int b = input.read();
                while ((b < '0' || '9' < b) && b != '-' && b != '+') {
                    b = input.read();
                }
                if (b == '-') {
                    sign = -1;
                    b = input.read();
                } else if (b == '+') {
                    b = input.read();
                }
                long ret = b - '0';
                while (true) {
                    b = input.read();
                    if (b < '0' || '9' < b) return ret * sign;
                    ret *= 10;
                    ret += b - '0';
                }
            } catch (IOException e) {
                e.printStackTrace();
                return -1;
            }
        }
        
        public double nextDouble() {
            try {
                double sign = 1;
                int b = input.read();
                while ((b < '0' || '9' < b) && b != '-' && b != '+') {
                    b = input.read();
                }
                if (b == '-') {
                    sign = -1;
                    b = input.read();
                } else if (b == '+') {
                    b = input.read();
                }
                double ret = b - '0';
                while (true) {
                    b = input.read();
                    if (b < '0' || '9' < b) break;
                    ret *= 10;
                    ret += b - '0';
                }
                if (b != '.') return sign * ret;
                double div = 1;
                b = input.read();
                while ('0' <= b && b <= '9') {
                    ret *= 10;
                    ret += b - '0';
                    div *= 10;
                    b = input.read();
                }
                return sign * ret / div;
            } catch (IOException e) {
                e.printStackTrace();
                return Double.NaN;
            }
        }
        
        public char nextChar() {
            try {
                int b = input.read();
                while (Character.isWhitespace(b)) {
                    b = input.read();
                }
                return (char) b;
            } catch (IOException e) {
                e.printStackTrace();
                return 0;
            }
        }
        
        public String nextStr() {
            try {
                StringBuilder sb = new StringBuilder();
                int b = input.read();
                while (Character.isWhitespace(b)) {
                    b = input.read();
                }
                while (b != -1 && !Character.isWhitespace(b)) {
                    sb.append((char) b);
                    b = input.read();
                }
                return sb.toString();
            } catch (IOException e) {
                e.printStackTrace();
                return "";
            }
        }
        
        public String nextLine() {
            try {
                StringBuilder sb = new StringBuilder();
                int b = input.read();
                while (b != -1 && b != '\n') {
                    sb.append((char) b);
                    b = input.read();
                }
                return sb.toString();
            } catch (IOException e) {
                e.printStackTrace();
                return "";
            }
        }
        
        public int[] nextIntArray(int n) {
            int[] res = new int[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextInt();
            }
            return res;
        }
        
        public int[] nextIntArrayDec(int n) {
            int[] res = new int[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextInt() - 1;
            }
            return res;
        }
        
        public int[] nextIntArray1Index(int n) {
            int[] res = new int[n + 1];
            for (int i = 0; i < n; i++) {
                res[i + 1] = nextInt();
            }
            return res;
        }
        
        public long[] nextLongArray(int n) {
            long[] res = new long[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextLong();
            }
            return res;
        }
        
        public long[] nextLongArrayDec(int n) {
            long[] res = new long[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextLong() - 1;
            }
            return res;
        }
        
        public long[] nextLongArray1Index(int n) {
            long[] res = new long[n + 1];
            for (int i = 0; i < n; i++) {
                res[i + 1] = nextLong();
            }
            return res;
        }
        
        public double[] nextDoubleArray(int n) {
            double[] res = new double[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextDouble();
            }
            return res;
        }
    }
}
0