結果

問題 No.1178 Can you draw a Circle?
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-13 21:52:19
言語 PyPy3
(7.3.13)
結果
WA  
実行時間 -
コード長 138 bytes
コンパイル時間 1,545 ms
コンパイル使用メモリ 87,084 KB
実行使用メモリ 72,104 KB
最終ジャッジ日時 2023-09-12 13:06:07
合計ジャッジ時間 3,445 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 72 ms
71,928 KB
testcase_02 AC 72 ms
71,672 KB
testcase_03 WA -
testcase_04 AC 73 ms
71,896 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 74 ms
71,552 KB
testcase_08 AC 74 ms
71,804 KB
testcase_09 AC 72 ms
71,348 KB
testcase_10 AC 72 ms
71,840 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d,e,f = map(int,input().split())

#ax^2+by^2+cx+dy=f
#a(x+c/2a)^2+b(y+d/2b)^2 = f+c^2/4a+d^2/4b

print((f-e+c**2/4/a+d**2/4/b)**0.5)
0