結果

問題 No.1179 Quadratic Equation
ユーザー yuuiyuui
提出日時 2020-08-21 22:15:02
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 2,169 ms
コンパイル使用メモリ 198,472 KB
最終ジャッジ日時 2025-01-13 06:03:52
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;

int main() {
    ll a,b,c;
    cin >> a >> b >>c;
    ll D = b*b-4*a*c;
    if(D<0){
        cout << "imaginary" << endl;
        return 0;
    }
    if(D==0){
        cout << double(-b)/double(2*a) << endl;
        return 0;
    }
    vector<double> ans;
    ans.push_back((double(-b) - sqrt(D))/double(2*a));
    ans.push_back((double(-b) + sqrt(D))/double(2*a));

    sort(ans.begin(),ans.end());

    cout << setprecision(10)<< ans[0]<<" " <<ans[1] << endl;


    return 0;
}
0