結果
問題 | No.1178 Can you draw a Circle? |
ユーザー |
![]() |
提出日時 | 2020-08-21 23:03:11 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 329 bytes |
コンパイル時間 | 1,623 ms |
コンパイル使用メモリ | 164,872 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 14:10:28 |
合計ジャッジ時間 | 2,352 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 5 WA * 10 |
ソースコード
#include <bits/stdc++.h>#define INF 2000000000000000000#define ll long longusing namespace std;int main() {ios::sync_with_stdio(false);cin.tie(nullptr);ll a, b, c, d, e, f;cin >> a >> b >> c >> d >> e >> f;long double ans = f - e + (c * c + d * d) / ((long double)4.0 * a);cout << pow(ans, 0.5) << "\n";}