結果

問題 No.955 ax^2+bx+c=0
ユーザー phsplsphspls
提出日時 2020-01-11 23:32:54
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 1,253 bytes
コンパイル時間 11,649 ms
コンパイル使用メモリ 401,736 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-26 09:02:03
合計ジャッジ時間 14,548 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 118 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn solve(abc: Vec<f64>) {
    let a = abc[0];
    let b = abc[1];
    let c = abc[2];
    if a == 0f64 {
        if b == 0f64 {
            if c == 0f64 {
                println!("{}", -1);
            } else {
                println!("{}", 0);
            }
        } else {
            println!("{}", 1);
            println!("{:.12}", -c / b);
        }
        return;
    }
    let temp = b * b - 4f64 * a * c;
    if temp > 0.0 {
        println!("{}", 2);
        let base = if b < 0f64 { (-b + temp.powf(0.5f64)) / (2.0f64 * a) } else { (-b - temp.powf(0.5f64)) / (2.0f64 * a) };
        let other = c / (a * base);
        if base < other {
            println!("{:.12}", base);
            println!("{:.12}", other);
        } else {
            println!("{:.12}", other);
            println!("{:.12}", base);
        }
    } else if temp == 0.0 {
        println!("{}", 1);
        println!("{:.12}", -b / (2.0f64 * a));
    } else {
        println!("{}", 0);
    }
}

fn main() {
    let mut abc = String::new();
    std::io::stdin().read_to_string(&mut abc).ok();
    let abc: Vec<f64> = abc.trim().split('\n').next().unwrap().trim().split_whitespace().map(|i| i.parse::<f64>().unwrap()).collect();
    solve(abc);
}
0