結果

問題 No.1178 Can you draw a Circle?
ユーザー anagohirameanagohirame
提出日時 2020-08-24 18:51:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 65,024 KB
最終ジャッジ日時 2024-04-25 04:19:05
合計ジャッジ時間 1,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 RE -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
権限があれば一括ダウンロードができます

ソースコード

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