結果

問題 No.1178 Can you draw a Circle?
ユーザー chocopuuchocopuu
提出日時 2020-08-21 22:29:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 200 bytes
コンパイル時間 669 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-07 14:03:30
合計ジャッジ時間 1,312 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
A, B, C, D, E, F = map(int, input().split())
if A == -1 or B == -1 :
	A *= -1
	B *= -1
	C *= -1
	D *= -1
	E *= -1
	F *= -1
ans = F - E + (C * C + D * D) / 4
ans = math.sqrt(ans)
print(ans)
0