結果

問題 No.1178 Can you draw a Circle?
ユーザー Shirapon_ponShirapon_pon
提出日時 2021-11-22 10:47:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 67,176 KB
最終ジャッジ日時 2024-06-23 20:42:15
合計ジャッジ時間 1,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,696 KB
testcase_02 AC 38 ms
52,420 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,668 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 42 ms
52,300 KB
testcase_08 AC 37 ms
52,896 KB
testcase_09 AC 38 ms
53,736 KB
testcase_10 AC 37 ms
51,980 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a, b, c, d, e, f = map(int, input().split())
# a(x+c/2a)^2 + b(y+d/2b)^2 = a*(c/2a)^2 + b*(d/2b)^2 - e + f

r = math.sqrt(a*(c/(2*a))**2 + b*(d/(2*b))**2 - e + f)
print(r)
0