結果

問題 No.1064 ∪∩∩ / Cup Cap Cap
ユーザー HaarHaar
提出日時 2020-05-29 21:37:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,012 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 202,876 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-06 02:50:19
合計ジャッジ時間 3,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 WA -
testcase_15 AC 3 ms
6,820 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
6,816 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 WA -
testcase_24 AC 2 ms
6,824 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 2 ms
6,820 KB
testcase_39 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#ifdef DEBUG
#include <Mylib/Debug/debug.cpp>
#else
#define dump(...)
#endif

/**
 * @title 二次方程式の実数解
 * @docs quadratic_equation.md
 */
std::vector<double> quadratic_equation(double a, double b, double c){
  double d = b*b - 4*a*c;
  if(d < 0) return {};

  double x1 = (-b + std::sqrt(d)) / (2 * a);
  if(d == 0) return {x1};
  
  double x2 = (-b - std::sqrt(d)) / (2 * a);
  return {x1, x2};
}


int main(){
  int a, b, c, d;

  while(std::cin >> a >> b >> c >> d){
    auto res = quadratic_equation(2.0, a-c, b-d);

    dump(res);

    if(res.size() == 0){
      std::cout << "No\n";
    }else if(res.size() == 1){
      std::cout << "Yes\n";
    }else{
      auto x1 = res[0], x2 = res[1];
      auto y1 = x1 * x1 + x1 * a + b;
      auto y2 = x2 * x2 + x2 * a + b;

      auto p = (y2 - y1) / (x2 - x1);
      p = std::abs(p);
      auto q = y1 - p * x1;

      std::cout << std::fixed << std::setprecision(12) << p << " " << q << "\n";
    }
  }

  return 0;
}
0