結果

問題 No.1064 ∪∩∩ / Cup Cap Cap
ユーザー stngstng
提出日時 2022-08-19 17:13:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 88,588 KB
最終ジャッジ日時 2024-10-08 00:48:53
合計ジャッジ時間 7,590 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
88,508 KB
testcase_01 AC 147 ms
88,108 KB
testcase_02 AC 149 ms
88,028 KB
testcase_03 AC 146 ms
88,420 KB
testcase_04 AC 146 ms
88,236 KB
testcase_05 AC 144 ms
88,192 KB
testcase_06 AC 148 ms
88,072 KB
testcase_07 AC 152 ms
88,192 KB
testcase_08 AC 146 ms
88,088 KB
testcase_09 AC 144 ms
88,060 KB
testcase_10 AC 144 ms
88,212 KB
testcase_11 AC 146 ms
88,044 KB
testcase_12 AC 147 ms
87,572 KB
testcase_13 AC 145 ms
88,260 KB
testcase_14 AC 148 ms
87,972 KB
testcase_15 AC 150 ms
88,332 KB
testcase_16 AC 149 ms
88,280 KB
testcase_17 AC 146 ms
88,376 KB
testcase_18 AC 147 ms
88,468 KB
testcase_19 AC 147 ms
88,588 KB
testcase_20 AC 150 ms
88,580 KB
testcase_21 AC 140 ms
88,208 KB
testcase_22 AC 149 ms
88,296 KB
testcase_23 AC 146 ms
88,456 KB
testcase_24 AC 146 ms
88,240 KB
testcase_25 AC 149 ms
87,960 KB
testcase_26 AC 147 ms
88,204 KB
testcase_27 AC 149 ms
88,092 KB
testcase_28 AC 142 ms
88,208 KB
testcase_29 AC 145 ms
88,312 KB
testcase_30 AC 147 ms
87,720 KB
testcase_31 AC 144 ms
88,352 KB
testcase_32 AC 149 ms
88,244 KB
testcase_33 AC 148 ms
88,124 KB
testcase_34 AC 142 ms
87,652 KB
testcase_35 AC 147 ms
88,364 KB
testcase_36 AC 147 ms
88,356 KB
testcase_37 AC 144 ms
88,188 KB
testcase_38 AC 146 ms
88,216 KB
testcase_39 AC 146 ms
88,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def makeLinearEquation(x1, y1, x2, y2):
    return (y1-y2),(x2-x1),(y2-y1)*x1-y1*(x2-x1)

def makeY(x):
    return x**2+a*x+b

from fractions import Fraction

a,b,c,d = map(int,input().split())
A,B,C = 2,(a-c),(b-d)
p,q = 0,0
tmp = B**2-4*A*C
if tmp < 0:
    print("No")
elif tmp == 0:
    print("Yes")
else:
    x1,x2 = (-B+(tmp)**0.5)/(2*A),(-B-(tmp)**0.5)/(2*A)
    y1,y2 = makeY(x1),makeY(x2)
    a1 = x1-x2
    b1 = y1-y2
    c = a1*y1-b1*x1
    p = b1/a1
    q = c/a1
    print(p,q)
0