CF630N.Forecast

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The Department of economic development of IT City created a model of city development till year 2100.

To prepare report about growth perspectives it is required to get growth estimates from the model.

To get the growth estimates it is required to solve a quadratic equation. Since the Department of economic development of IT City creates realistic models only, that quadratic equation has a solution, moreover there are exactly two different real roots.

The greater of these roots corresponds to the optimistic scenario, the smaller one corresponds to the pessimistic one. Help to get these estimates, first the optimistic, then the pessimistic one.

输入格式

The only line of the input contains three integers a,b,ca,b,c ( 1000<=a,b,c<=1000-1000<=a,b,c<=1000 ) — the coefficients of ax2+bx+c=0ax^{2}+bx+c=0 equation.

输出格式

In the first line output the greater of the equation roots, in the second line output the smaller one. Absolute or relative error should not be greater than 10610^{-6} .

输入输出样例

  • 输入#1

    1 30 200
    

    输出#1

    -10.000000000000000
    -20.000000000000000
首页