結果

問題 No.955 ax^2+bx+c=0
ユーザー 👑 KazunKazun
提出日時 2021-01-01 18:37:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,560 KB
最終ジャッジ日時 2024-04-19 20:02:48
合計ジャッジ時間 23,114 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 412 ms
81,664 KB
testcase_01 AC 261 ms
81,280 KB
testcase_02 AC 112 ms
79,616 KB
testcase_03 AC 111 ms
79,872 KB
testcase_04 AC 113 ms
80,000 KB
testcase_05 AC 112 ms
80,000 KB
testcase_06 AC 111 ms
80,000 KB
testcase_07 AC 112 ms
80,256 KB
testcase_08 AC 113 ms
79,872 KB
testcase_09 AC 111 ms
79,872 KB
testcase_10 AC 113 ms
79,872 KB
testcase_11 AC 112 ms
80,152 KB
testcase_12 AC 111 ms
79,872 KB
testcase_13 AC 111 ms
79,872 KB
testcase_14 AC 111 ms
79,360 KB
testcase_15 AC 110 ms
79,872 KB
testcase_16 AC 112 ms
79,872 KB
testcase_17 AC 112 ms
79,872 KB
testcase_18 AC 113 ms
79,360 KB
testcase_19 AC 111 ms
79,488 KB
testcase_20 AC 111 ms
79,616 KB
testcase_21 AC 111 ms
79,360 KB
testcase_22 AC 112 ms
79,872 KB
testcase_23 AC 111 ms
79,872 KB
testcase_24 AC 110 ms
79,872 KB
testcase_25 AC 111 ms
79,488 KB
testcase_26 AC 111 ms
79,872 KB
testcase_27 AC 109 ms
79,488 KB
testcase_28 AC 111 ms
79,872 KB
testcase_29 AC 112 ms
79,360 KB
testcase_30 AC 114 ms
79,872 KB
testcase_31 AC 115 ms
79,744 KB
testcase_32 AC 111 ms
79,872 KB
testcase_33 AC 115 ms
80,256 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 RE -
testcase_59 RE -
testcase_60 AC 108 ms
80,000 KB
testcase_61 AC 106 ms
79,744 KB
testcase_62 RE -
testcase_63 RE -
testcase_64 AC 105 ms
79,872 KB
testcase_65 RE -
testcase_66 AC 104 ms
79,872 KB
testcase_67 RE -
testcase_68 AC 105 ms
79,872 KB
testcase_69 RE -
testcase_70 RE -
testcase_71 AC 105 ms
79,872 KB
testcase_72 AC 107 ms
79,360 KB
testcase_73 RE -
testcase_74 RE -
testcase_75 AC 103 ms
79,872 KB
testcase_76 AC 105 ms
79,616 KB
testcase_77 RE -
testcase_78 RE -
testcase_79 RE -
testcase_80 AC 111 ms
79,744 KB
testcase_81 RE -
testcase_82 AC 109 ms
80,000 KB
testcase_83 AC 265 ms
81,664 KB
testcase_84 AC 265 ms
81,280 KB
testcase_85 AC 261 ms
81,664 KB
testcase_86 AC 258 ms
81,408 KB
testcase_87 AC 109 ms
79,616 KB
testcase_88 AC 110 ms
79,616 KB
testcase_89 AC 112 ms
79,872 KB
testcase_90 AC 254 ms
81,152 KB
testcase_91 AC 255 ms
81,664 KB
testcase_92 AC 102 ms
80,256 KB
testcase_93 AC 104 ms
79,744 KB
testcase_94 AC 246 ms
81,280 KB
testcase_95 RE -
testcase_96 RE -
testcase_97 AC 256 ms
81,792 KB
testcase_98 AC 253 ms
81,280 KB
testcase_99 RE -
testcase_100 AC 105 ms
79,872 KB
testcase_101 AC 253 ms
81,728 KB
testcase_102 RE -
testcase_103 RE -
testcase_104 RE -
testcase_105 RE -
testcase_106 RE -
testcase_107 RE -
testcase_108 RE -
testcase_109 RE -
testcase_110 RE -
testcase_111 RE -
testcase_112 RE -
testcase_113 RE -
testcase_114 RE -
testcase_115 RE -
testcase_116 RE -
testcase_117 RE -
testcase_118 RE -
testcase_119 RE -
testcase_120 RE -
testcase_121 RE -
testcase_122 WA -
testcase_123 AC 259 ms
81,588 KB
testcase_124 AC 257 ms
81,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
import decimal

decimal.getcontext().prec=10000

a,b,c=map(int,input().split())

if a<0:
    a=-a
    b=-b
    c=-c

if a==0:
    if b==0:
        if c==0:
            print(-1)
        else:
            print(0)
    else:
        b=decimal.Decimal(b)
        c=decimal.Decimal(c)
        print(1)
        print(-c/b)
else:
    D=b*b-4*a*c
    a=decimal.Decimal(a)
    b=decimal.Decimal(b)
    c=decimal.Decimal(c)
    if D<0:
        print(0)
    elif D==0:
        print(1)
        print(-b/(2*a))
    else:
        print(2)
        R=decimal.Decimal(sqrt(D))
        print((-b-R)/(2*a))
        print((-b+R)/(2*a))
0