結果

問題 No.1179 Quadratic Equation
ユーザー tnakao0123tnakao0123
提出日時 2020-08-23 02:15:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 880 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 93,032 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-23 13:26:25
合計ジャッジ時間 1,538 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1179.cc:  No.1179 Quadratic Equation - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

/* typedef */

/* global variables */

/* subroutines */

/* main */

int main() {
  int a, b, c;
  scanf("%d%d%d", &a, &b, &c);

  int d = b * b - 4 * a * c;

  if (d > 0) {
    double e = sqrt(d);
    double x0 = (-b - e) / (2 * a);
    double x1 = (-b + e) / (2 * a);
    printf("%.15lf %.15lf\n", x0, x1);
  }
  else if (d == 0) {
    double x = -(double)b / (2 * a);
    printf("%.15lf\n", x);
  }
  else
    puts("imaginary");
  return 0;
}
0