結果

問題 No.1064 ∪∩∩ / Cup Cap Cap
ユーザー tanakkitanakki
提出日時 2020-05-29 21:57:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,736 KB
実行使用メモリ 53,724 KB
最終ジャッジ日時 2024-11-06 04:16:15
合計ジャッジ時間 2,894 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,724 KB
testcase_01 AC 37 ms
53,432 KB
testcase_02 AC 37 ms
53,168 KB
testcase_03 AC 37 ms
53,204 KB
testcase_04 AC 38 ms
52,024 KB
testcase_05 AC 37 ms
52,820 KB
testcase_06 AC 36 ms
51,936 KB
testcase_07 AC 36 ms
51,816 KB
testcase_08 AC 35 ms
52,936 KB
testcase_09 AC 38 ms
53,288 KB
testcase_10 AC 36 ms
52,204 KB
testcase_11 AC 37 ms
52,492 KB
testcase_12 AC 37 ms
52,008 KB
testcase_13 AC 37 ms
53,544 KB
testcase_14 AC 40 ms
52,256 KB
testcase_15 AC 36 ms
53,008 KB
testcase_16 AC 36 ms
52,872 KB
testcase_17 AC 36 ms
53,684 KB
testcase_18 AC 36 ms
52,668 KB
testcase_19 AC 36 ms
52,956 KB
testcase_20 AC 37 ms
53,420 KB
testcase_21 AC 36 ms
53,176 KB
testcase_22 AC 37 ms
51,884 KB
testcase_23 AC 37 ms
52,424 KB
testcase_24 AC 37 ms
53,076 KB
testcase_25 AC 36 ms
51,896 KB
testcase_26 AC 36 ms
52,192 KB
testcase_27 AC 37 ms
52,484 KB
testcase_28 AC 36 ms
52,800 KB
testcase_29 AC 36 ms
52,248 KB
testcase_30 AC 38 ms
51,816 KB
testcase_31 AC 36 ms
52,008 KB
testcase_32 AC 36 ms
53,660 KB
testcase_33 AC 36 ms
52,176 KB
testcase_34 AC 37 ms
51,756 KB
testcase_35 AC 37 ms
53,316 KB
testcase_36 AC 37 ms
52,380 KB
testcase_37 AC 36 ms
53,724 KB
testcase_38 AC 38 ms
53,696 KB
testcase_39 AC 37 ms
53,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, d = map(int, input().split())
if (a-c)**2-8*(b-d)<0:
    print('No')
elif (a-c)**2-8*(b-d)==0:
    print('Yes')
else:
    x1 = ((c-a) + ((a-c)**2-8*(b-d))**0.5) / 4
    x2 = ((c-a) - ((a-c)**2-8*(b-d))**0.5) / 4
    y1 = x1**2 + a*x1 + b
    y2 = x2**2 + a*x2 + b
    p = (y2-y1)/(x2-x1)
    q = y1 - p*x1
    print(p, q)
0