結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,012 KB
testcase_01 AC 40 ms
52,320 KB
testcase_02 AC 35 ms
52,152 KB
testcase_03 WA -
testcase_04 AC 36 ms
52,516 KB
testcase_05 AC 36 ms
52,688 KB
testcase_06 AC 35 ms
53,224 KB
testcase_07 AC 35 ms
52,688 KB
testcase_08 AC 35 ms
53,136 KB
testcase_09 AC 35 ms
52,436 KB
testcase_10 AC 37 ms
52,636 KB
testcase_11 AC 36 ms
52,248 KB
testcase_12 AC 36 ms
52,484 KB
testcase_13 AC 36 ms
52,992 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 35 ms
52,684 KB
testcase_25 AC 35 ms
52,824 KB
testcase_26 AC 35 ms
53,692 KB
testcase_27 AC 35 ms
52,080 KB
testcase_28 AC 35 ms
53,164 KB
testcase_29 AC 34 ms
52,276 KB
testcase_30 AC 37 ms
51,944 KB
testcase_31 AC 35 ms
51,828 KB
testcase_32 AC 35 ms
52,380 KB
testcase_33 AC 33 ms
52,092 KB
testcase_34 AC 35 ms
53,136 KB
testcase_35 AC 34 ms
53,624 KB
testcase_36 AC 35 ms
53,840 KB
testcase_37 AC 35 ms
52,336 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(x1))/(x1-x2),((f1(x1)-f1(x1))/(x1-x2))*(-x1)+f1(x1))
0