結果
| 問題 | 
                            No.1179 Quadratic Equation
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-09-03 00:01:56 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 512 bytes | 
| コンパイル時間 | 2,087 ms | 
| コンパイル使用メモリ | 193,160 KB | 
| 最終ジャッジ日時 | 2025-01-14 03:53:04 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 9 WA * 2 | 
ソースコード
#include<bits/stdc++.h>
typedef long double ld;
using namespace std;
struct MyIO {
    MyIO(){
        cin.tie(0); 
        ios::sync_with_stdio(false); 
        cout << fixed << setprecision(15);
    }
} IO_OI;
int main() {
    ld a,b,c; cin>>a>>b>>c;
    ld d = b*b-4*a*c;
    if(d<0) {
        cout << "imaginary" << endl;
        return 0;
    } else if(d==0) {
        cout << -b/(2*a) << endl;
        return 0;
    }
    cout <<  (-b-sqrt(d))/(2*a) << " " << (-b+sqrt(d))/(2*a) << endl;
    return 0;
}