結果

問題 No.1178 Can you draw a Circle?
ユーザー rlangevin
提出日時 2023-01-09 18:29:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 123 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 65,916 KB
最終ジャッジ日時 2024-12-17 20:55:26
合計ジャッジ時間 1,694 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 12 RE * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

a, b, c, d, e, f = map(int, input().split())
print(sqrt(f - e + (c ** 2 + d ** 2)/(4 * a)) * sqrt(1/a))
0