結果

問題 No.1178 Can you draw a Circle?
ユーザー 👑 rin204rin204
提出日時 2022-01-18 22:34:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 120 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-11-23 13:33:19
合計ジャッジ時間 1,620 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,440 KB
testcase_01 AC 37 ms
52,288 KB
testcase_02 AC 36 ms
53,672 KB
testcase_03 AC 36 ms
52,864 KB
testcase_04 AC 36 ms
53,668 KB
testcase_05 AC 35 ms
52,120 KB
testcase_06 AC 35 ms
53,144 KB
testcase_07 AC 35 ms
54,152 KB
testcase_08 AC 36 ms
52,000 KB
testcase_09 AC 34 ms
52,576 KB
testcase_10 AC 37 ms
52,800 KB
testcase_11 AC 36 ms
53,632 KB
testcase_12 AC 35 ms
52,556 KB
testcase_13 AC 36 ms
52,644 KB
testcase_14 AC 35 ms
52,312 KB
testcase_15 AC 36 ms
52,900 KB
testcase_16 AC 39 ms
53,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, d, e, f = map(int, input().split())
r2 = f - e + (c * c / (4 * a)) + (d * d / (4 * b))
r2 /= a
print(r2 ** 0.5)
0