結果

問題 No.1178 Can you draw a Circle?
ユーザー ああいいああいい
提出日時 2022-04-05 23:41:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 122 bytes
コンパイル時間 991 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 53,892 KB
最終ジャッジ日時 2024-11-27 08:55:20
合計ジャッジ時間 1,522 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 12 WA * 3
権限があれば一括ダウンロードができます

ソースコード

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