結果

問題 No.1064 ∪∩∩ / Cup Cap Cap
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-19 23:24:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 274 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 54,064 KB
最終ジャッジ日時 2024-09-19 23:24:29
合計ジャッジ時間 2,725 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,508 KB
testcase_01 AC 33 ms
53,564 KB
testcase_02 AC 33 ms
53,032 KB
testcase_03 WA -
testcase_04 AC 36 ms
52,424 KB
testcase_05 AC 33 ms
52,544 KB
testcase_06 AC 36 ms
52,400 KB
testcase_07 AC 34 ms
52,432 KB
testcase_08 AC 35 ms
52,216 KB
testcase_09 AC 34 ms
53,436 KB
testcase_10 AC 34 ms
53,288 KB
testcase_11 AC 36 ms
52,280 KB
testcase_12 AC 35 ms
52,340 KB
testcase_13 AC 33 ms
52,008 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 33 ms
54,064 KB
testcase_25 AC 34 ms
53,360 KB
testcase_26 AC 34 ms
52,740 KB
testcase_27 AC 34 ms
52,364 KB
testcase_28 AC 36 ms
53,108 KB
testcase_29 AC 38 ms
53,372 KB
testcase_30 AC 37 ms
52,484 KB
testcase_31 AC 36 ms
52,992 KB
testcase_32 AC 36 ms
53,508 KB
testcase_33 AC 36 ms
52,528 KB
testcase_34 AC 38 ms
52,748 KB
testcase_35 AC 35 ms
52,136 KB
testcase_36 AC 36 ms
53,760 KB
testcase_37 AC 35 ms
52,896 KB
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d=map(int,input().split())
f1=lambda x:x**2+a*x+b
f2=lambda x:x**2+c*x+d
A,B,C=2,a-c,b-d
D=B**2-4*A*C
if D<0:
	print("No")
elif D==0:
	print("Yes")
else:
	x1=(-B-D**0.5)/(2*A)
	x2=(-B+D**0.5)/(2*A)
	print((f1(x1)-f1(x2))/(x1-x2),((f1(x1)-f1(x1))/(x1-x2))*(-x1)+f1(x1))
0