結果

問題 No.1178 Can you draw a Circle?
ユーザー HaarHaar
提出日時 2020-08-21 21:53:07
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 368 bytes
コンパイル時間 3,377 ms
コンパイル使用メモリ 192,108 KB
最終ジャッジ日時 2025-01-13 05:43:49
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

namespace solver{
  void solve(){
    double a, b, c, d, e, f; std::cin >> a >> b >> c >> d >> e >> f;
 
    //assert(a == b and a != 0 and b != 0);

    double ans = std::sqrt(f - e + c * c / (4 * a) + d * d / (4 * b));
    std::cout << std::fixed << std::setprecision(15) << ans << "\n";
  }
}

int main(){
  solver::solve();
  return 0;
}
0