結果

問題 No.955 ax^2+bx+c=0
ユーザー yuppe19 😺
提出日時 2019-12-18 15:54:05
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 510 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-07-07 00:49:40
合計ジャッジ時間 5,425 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 102 WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
from decimal import *

def f(a, b, c):
    if a == 0:
        if b == 0:
            return [-1] if c == 0 else [0]
        return [1, -c/b]
    else:
        D = b*b - 4*a*c
        if D < 0:
            return [0]
        if D == 0:
            return [1, -b/(2*a)]
        return [2, (-b-D.sqrt())/(2*a), (-b+D.sqrt())/(2*a)]


a, b, c = map(Decimal, raw_input().split())
res = f(a, b, c)
print res[0]
for token in res[1:]:
    print '{:.30f}'.format(token)
0