记录编号 422799 评测结果 AAAAA
题目名称 [NOIP 2001]一元三次方程求解 最终得分 100
用户昵称 GravatarkZime 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2017-07-10 13:44:25 内存使用 0.31 MiB
显示代码纯文本
# include <bits/stdc++.h>
using namespace std;
int main() { 
# ifndef LOCAL 
    freopen("3cfc.in", "r", stdin);
    freopen("3cfc.out", "w", stdout);
# endif
    double a, b, c, d;
    int times = 0;
    cin >> a >> b >> c >> d;
    for(int i = -10000; i <= 10000; i += 1) {
        double x =i / 100.0;
        double ans = ((a * x + b) * x + c) * x;
        if(abs((ans * 100) - (-100 * d)) <= 0.001) {
            printf("%.2f ", x);
            times++;
            if(times == 3) return 0;
            i += 99;
        }
    }
    return 0;
}