CodeForces 630 N. Forecast
2914 단어 codeforces
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.
Input The only line of the input contains three integers a, b, c ( - 1000 ≤ a, b, c ≤ 1000) — the coefficients of ax2 + bx + c = 0 equation.
Output 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 10 - 6.
Sample Input Input 1 30 200 Output -10.000000000000000 -20.000000000000000
간단한구근문제,,,,직접공식대신OK,,,,,,대수문제하나아래AC코드첨부
#include<cstdio>
#include<cmath>
#include<iostream>
using namespace std;
int main()
{
double a,b,c;
while(~scanf("%lf%lf%lf",&a,&b,&c))
{
double result1,result2;
result1=(-b+(sqrt(b*b-4*a*c)))/(2*a);
result2=(-b-(sqrt(b*b-4*a*c)))/(2*a);
if(result1>=result2)
{
printf("%.14lf
%.14lf
",result1,result2);
}
else
{
printf("%.14lf
%.14lf
",result2,result1);
}
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.