結果
問題 |
No.955 ax^2+bx+c=0
|
ユーザー |
![]() |
提出日時 | 2020-06-02 02:47:50 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,500 bytes |
コンパイル時間 | 2,497 ms |
コンパイル使用メモリ | 193,276 KB |
最終ジャッジ日時 | 2025-01-10 20:30:45 |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 99 WA * 23 |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (ll i = 0; i < (n); i++) #define all(x) (x).begin(), (x).end() using ll = long long; using ld = long double; using namespace std; template <typename T> using vec = std::vector<T>; int main() { ll a, b, c; cin >> a >> b >> c; if(!a&&!b&&!c){ cout << -1 << endl; return 0; } else if(!a&&!b){ cout << 0 << endl; return 0; } else if(!a){ cout << 1 << endl; long double ans = c/b; cout << fixed << setprecision(15); cout << ans << endl; return 0; } ll D = b * b - 4 * a * c; ld dd = (ld)b * (ld)b - (ld)4 * (ld)a * (ld)c; if (D > 0) { cout << 2 << endl; if(-b>0){ long double ans1 = ((ld)-b+sqrtl(dd))/((ld)2*a); long double ans2 = ((ld)c/(ld)a)/(ld)ans1; cout << fixed << setprecision(16); cout << (ans1>=ans2?ans2:ans1) << endl; cout << (ans1>=ans2?ans1:ans2) << endl; } else { long double ans1 = ((ld)-b-sqrtl(dd))/((ld)2*a); long double ans2 = ((ld)c/(ld)a)/(ld)ans1; cout << fixed << setprecision(16); cout << (ans1>=ans2?ans2:ans1) << endl; cout << (ans1>=ans2?ans1:ans2) << endl; } } else if (D == 0) { cout << 1 << endl; long double ans = -b/(2*a); cout << fixed << setprecision(15); cout << ans << endl; } else { cout << 0 << endl; } }