結果

問題 No.1178 Can you draw a Circle?
ユーザー ああいい
提出日時 2022-04-05 23:40:15
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 122 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 66,804 KB
最終ジャッジ日時 2024-11-27 08:51:33
合計ジャッジ時間 2,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other WA * 2 RE * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d,e,f = map(int,input().split())
from math import sqrt

r = 4 * a * (f - e) - c * c - d * d
print(sqrt(r) / (2 * a))
0