結果
| 問題 |
No.955 ax^2+bx+c=0
|
| コンテスト | |
| ユーザー |
tochiji1
|
| 提出日時 | 2020-06-02 02:39:35 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,400 bytes |
| コンパイル時間 | 2,934 ms |
| コンパイル使用メモリ | 193,532 KB |
| 最終ジャッジ日時 | 2025-01-10 20:30:33 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 85 WA * 37 |
ソースコード
#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 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;
if (D > 0) {
cout << 2 << endl;
if(-b>=0){
long double ans1 = (-b+sqrtl(b*b-4*a*c))/(2*a);
long double ans2 = (c/a)/ans1;
cout << fixed << setprecision(15);
cout << (ans1>=ans2?ans2:ans1) << endl;
cout << (ans1>=ans2?ans1:ans2) << endl;
} else {
long double ans1 = (-b-sqrtl(b*b-4*a*c))/(2*a);
long double ans2 = (c/a)/ans1;
cout << fixed << setprecision(15);
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;
}
}
tochiji1