結果
問題 |
No.1179 Quadratic Equation
|
ユーザー |
|
提出日時 | 2020-09-03 00:06:02 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 603 bytes |
コンパイル時間 | 2,336 ms |
コンパイル使用メモリ | 192,888 KB |
最終ジャッジ日時 | 2025-01-14 03:53:15 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
#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; } if(a>0) cout << (-b-sqrt(d))/(2*a) << " " << (-b+sqrt(d))/(2*a) << endl; else cout << (-b+sqrt(d))/(2*a) << " " << (-b-sqrt(d))/(2*a) << endl; return 0; }