結果

問題 No.955 ax^2+bx+c=0
ユーザー AEnAEn
提出日時 2022-06-15 19:59:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 54,508 KB
最終ジャッジ日時 2024-10-04 17:21:31
合計ジャッジ時間 7,161 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,728 KB
testcase_01 AC 40 ms
53,140 KB
testcase_02 AC 37 ms
52,312 KB
testcase_03 AC 35 ms
54,284 KB
testcase_04 AC 35 ms
53,012 KB
testcase_05 AC 34 ms
52,408 KB
testcase_06 AC 34 ms
52,344 KB
testcase_07 AC 35 ms
54,184 KB
testcase_08 AC 35 ms
53,412 KB
testcase_09 AC 34 ms
53,516 KB
testcase_10 AC 34 ms
53,264 KB
testcase_11 AC 34 ms
52,596 KB
testcase_12 AC 35 ms
52,136 KB
testcase_13 AC 33 ms
53,064 KB
testcase_14 AC 34 ms
52,964 KB
testcase_15 AC 33 ms
52,200 KB
testcase_16 AC 34 ms
52,816 KB
testcase_17 AC 35 ms
52,392 KB
testcase_18 AC 33 ms
52,520 KB
testcase_19 AC 33 ms
52,352 KB
testcase_20 AC 32 ms
53,800 KB
testcase_21 AC 31 ms
53,076 KB
testcase_22 AC 33 ms
52,344 KB
testcase_23 AC 34 ms
52,376 KB
testcase_24 AC 33 ms
53,068 KB
testcase_25 AC 34 ms
53,072 KB
testcase_26 AC 34 ms
52,468 KB
testcase_27 AC 33 ms
53,216 KB
testcase_28 AC 34 ms
52,660 KB
testcase_29 AC 33 ms
52,628 KB
testcase_30 AC 33 ms
52,464 KB
testcase_31 AC 36 ms
53,540 KB
testcase_32 AC 35 ms
53,468 KB
testcase_33 AC 36 ms
52,740 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 34 ms
53,340 KB
testcase_59 WA -
testcase_60 AC 33 ms
53,288 KB
testcase_61 AC 33 ms
53,596 KB
testcase_62 AC 32 ms
53,640 KB
testcase_63 WA -
testcase_64 AC 36 ms
52,340 KB
testcase_65 WA -
testcase_66 AC 35 ms
51,828 KB
testcase_67 AC 34 ms
53,192 KB
testcase_68 AC 35 ms
52,128 KB
testcase_69 AC 35 ms
52,744 KB
testcase_70 WA -
testcase_71 AC 37 ms
52,272 KB
testcase_72 AC 35 ms
53,216 KB
testcase_73 AC 35 ms
52,652 KB
testcase_74 AC 35 ms
51,880 KB
testcase_75 AC 35 ms
53,164 KB
testcase_76 AC 35 ms
52,080 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 AC 33 ms
52,140 KB
testcase_81 AC 33 ms
53,236 KB
testcase_82 AC 35 ms
52,624 KB
testcase_83 AC 37 ms
52,464 KB
testcase_84 AC 36 ms
53,356 KB
testcase_85 AC 34 ms
53,688 KB
testcase_86 AC 33 ms
52,320 KB
testcase_87 AC 33 ms
53,600 KB
testcase_88 AC 34 ms
52,384 KB
testcase_89 AC 34 ms
52,328 KB
testcase_90 AC 36 ms
52,572 KB
testcase_91 AC 36 ms
52,816 KB
testcase_92 AC 36 ms
52,192 KB
testcase_93 AC 35 ms
52,336 KB
testcase_94 AC 36 ms
53,080 KB
testcase_95 AC 35 ms
52,688 KB
testcase_96 AC 37 ms
52,716 KB
testcase_97 AC 36 ms
52,440 KB
testcase_98 AC 35 ms
53,628 KB
testcase_99 AC 35 ms
52,364 KB
testcase_100 AC 33 ms
51,944 KB
testcase_101 AC 33 ms
52,340 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 35 ms
52,740 KB
testcase_124 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math as m
a,b,c = map(int, input().split())
if a == 0:
    if b == 0:
        if c == 0:
            print(-1)
        else:
            print(0)
    else:
        print(1,c/b,sep='\n')
else:
    if b*b-4*a*c>=0:
        p,q=(-b-m.sqrt(b*b-4*a*c))/2/a,(-b+m.sqrt(b*b-4*a*c))/2/a
        if p!=q:
            print(2,p,q,sep='\n')
        else:
            print(1,p,sep='\n')
    else:
        print(0)
0