結果

問題 No.1179 Quadratic Equation
ユーザー forest3
提出日時 2025-03-20 21:52:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 1,490 ms
コンパイル使用メモリ 161,556 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2025-03-20 21:52:25
合計ジャッジ時間 2,316 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/fenwicktree>
using namespace atcoder;

using ll = long long;
#define rep(i, n) for(int i = 0; i < n; i++)

int main() {
	int a, b, c;
	cin >> a >> b >> c;
	int D = b * b - 4 * a * c;
	if(D < 0) cout << "imaginary" << endl;
	else {
		double x1 = (-b + sqrt(D)) / (2 * a);
		double x2 = (-b - sqrt(D)) / (2 * a);
		if(x1 > x2) swap(x1, x2);
		if(x1 != x2) cout << fixed << setprecision(12) << x1 << " " << x2 << endl;
		else cout << fixed << setprecision(12) << x1 << endl;
	}
} 
0