結果
問題 | No.1179 Quadratic Equation |
ユーザー | Kunta (coder) |
提出日時 | 2020-08-21 22:27:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 770 bytes |
コンパイル時間 | 1,504 ms |
コンパイル使用メモリ | 167,284 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-15 05:54:46 |
合計ジャッジ時間 | 2,134 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define MoD 1e9 + 7 #define clear(a) memset(a, 0, sizeof(a)) #define fo(i, a, b) for(int i = a; i < b; i++) //#define re(i, a, b) for(int i = b; i > a; i--) #define pb(a) push_back(a) template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} int a,b,c; void solve(){ cin >> a>>b>>c; int dis= b*b-4*a*c; cout.precision(20); if(dis>0) cout << (-b-sqrt(dis))/(2*a) <<' '<< (-b+sqrt(dis))/(2*a) << '\n'; else if(dis==0) cout << (-b)/(2*a) << '\n'; else std::cout << "imaginary" << '\n'; } int main() { ios::sync_with_stdio(0); cin.tie(0); int t=1; for(int i=1; i<=t; ++i) { solve(); } }