結果
問題 |
No.955 ax^2+bx+c=0
|
ユーザー |
|
提出日時 | 2019-12-18 11:07:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 780 bytes |
コンパイル時間 | 705 ms |
コンパイル使用メモリ | 74,456 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 00:38:03 |
合計ジャッジ時間 | 3,537 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 98 WA * 24 |
ソースコード
#include<iostream> #include<iomanip> #include<cmath> using namespace std; typedef long long ll; int main(){ cout << fixed << setprecision(15); ll a, b, c; cin >> a >> b >> c; if(a == 0){ if(b == 0){ cout << (c==0 ? -1 : 0) << endl; }else{ cout << 1 << endl << -(long double)c/b << endl; } }else{ ll d = b*b-4*a*c; if(d < 0){ cout << 0 << endl; }else if(d == 0){ cout << 1 << endl << -(long double)b/a/2 << endl; }else{ long double f = sqrtl(d); cout << 2 << endl; long double x = (-b-f)/a/2, y = (-b+f)/a/2; if(x > y) swap(x, y); cout << x << endl << y << endl; } } return 0; }