結果

問題 No.955 ax^2+bx+c=0
ユーザー yuppe19 😺
提出日時 2019-12-18 15:58:29
言語 Python2
(2.7.18)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-09-18 22:11:10
合計ジャッジ時間 5,531 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 122
権限があれば一括ダウンロードができます

ソースコード

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 sorted(res[1:]):
    print '{:.30f}'.format(token)
0