結果

問題 No.1178 Can you draw a Circle?
ユーザー anagohirame
提出日時 2020-08-24 18:51:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 65,024 KB
最終ジャッジ日時 2024-11-07 14:15:39
合計ジャッジ時間 1,955 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other WA * 7 RE * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
a, b, c, d, e, f = map(int, input().split())
print(sqrt(f-e+sqrt(c/2/a)+sqrt(d/2/b)))
0