CF20B.Equation

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given an equation:

Ax2+Bx+C=0Ax^{2}+Bx+C=0 . Your task is to find the number of distinct roots of the equation and print all of them in ascending order.

输入格式

The first line contains three integer numbers A,BA,B and CC ( 105<=A,B,C<=105-10^{5}<=A,B,C<=10^{5} ). Any coefficient may be equal to 0.

输出格式

In case of infinite root count print the only integer -1. In case of no roots print the only integer 0. In other cases print the number of root on the first line and the roots on the following lines in the ascending order. Print roots with at least 5 digits after the decimal point.

输入输出样例

  • 输入#1

    1 -5 6
    

    输出#1

    2
    2.0000000000
    3.0000000000
首页