結果

問題 No.1179 Quadratic Equation
ユーザー 👑 Kazun
提出日時 2020-08-21 21:37:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,924 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,864 KB
最終ジャッジ日時 2024-10-15 05:21:25
合計ジャッジ時間 1,342 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

def General_Binary_Increase_Search(L,R,cond,Integer=True,ep=1/(1<<20)):
"""調,.
L:
R:
cond:(1,調 or 調)
Integer:?
ep:Integer=False,
"""
if not(cond(R)):
return False
if Integer:
R+=1
while R-L>1:
C=L+(R-L)//2
if cond(C):
R=C
else:
L=C
return R
else:
while (R-L)>=ep:
C=L+(R-L)/2
if cond(C):
R=C
else:
L=C
return R
def General_Binary_Decrease_Search(L,R,cond,Integer=True,ep=1/(1<<20)):
"""調,.
L:
R:
cond:(1,調 or 調)
Integer:?
ep:Integer=False,
"""
if not(cond(L)):
return False
if Integer:
L-=1
while R-L>1:
C=L+(R-L)//2
if cond(C):
L=C
else:
R=C
return L
else:
while (R-L)>=ep:
C=L+(R-L)/2
if cond(C):
L=C
else:
R=C
return L
#==========================================================
from math import sqrt
a,b,c=map(int,input().split())
D=b*b-4*a*c
if D>0:
p=General_Binary_Decrease_Search(-10*100,-b/(2*a),lambda x:a*x**2+b*x+c>=0,False,10**(-7))
q=General_Binary_Increase_Search(-b/(2*a),10**100,lambda x:a*x**2+b*x+c>=0,False,10**(-7))
print(p,q)
elif D==0:
print(-b/(2*a))
else:
print("imaginary")
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0