結果

問題 No.1178 Can you draw a Circle?
ユーザー rlangevinrlangevin
提出日時 2023-01-09 18:27:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 111 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 66,096 KB
最終ジャッジ日時 2024-12-17 20:53:58
合計ジャッジ時間 1,868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5 WA * 7 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)))
0