結果

問題 No.1064 ∪∩∩ / Cup Cap Cap
ユーザー ntudantuda
提出日時 2024-05-28 22:10:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 53,564 KB
最終ジャッジ日時 2024-05-28 22:10:26
合計ジャッジ時間 4,064 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,128 KB
testcase_01 AC 38 ms
52,808 KB
testcase_02 AC 38 ms
52,144 KB
testcase_03 AC 38 ms
52,628 KB
testcase_04 AC 38 ms
52,288 KB
testcase_05 AC 38 ms
52,088 KB
testcase_06 AC 39 ms
52,128 KB
testcase_07 AC 38 ms
53,368 KB
testcase_08 AC 39 ms
52,344 KB
testcase_09 AC 38 ms
53,428 KB
testcase_10 AC 61 ms
52,592 KB
testcase_11 AC 38 ms
52,296 KB
testcase_12 AC 38 ms
52,276 KB
testcase_13 AC 39 ms
52,108 KB
testcase_14 AC 39 ms
53,140 KB
testcase_15 AC 38 ms
52,784 KB
testcase_16 AC 38 ms
53,360 KB
testcase_17 AC 38 ms
53,296 KB
testcase_18 AC 38 ms
52,660 KB
testcase_19 AC 38 ms
52,348 KB
testcase_20 AC 38 ms
52,780 KB
testcase_21 AC 39 ms
53,500 KB
testcase_22 AC 38 ms
53,328 KB
testcase_23 AC 39 ms
53,352 KB
testcase_24 AC 38 ms
53,564 KB
testcase_25 AC 38 ms
53,288 KB
testcase_26 AC 38 ms
53,376 KB
testcase_27 AC 39 ms
51,884 KB
testcase_28 AC 38 ms
51,952 KB
testcase_29 AC 38 ms
52,200 KB
testcase_30 AC 38 ms
52,396 KB
testcase_31 AC 39 ms
52,772 KB
testcase_32 AC 39 ms
52,756 KB
testcase_33 AC 40 ms
52,692 KB
testcase_34 AC 38 ms
52,640 KB
testcase_35 AC 38 ms
53,148 KB
testcase_36 AC 38 ms
53,000 KB
testcase_37 AC 38 ms
53,168 KB
testcase_38 AC 39 ms
52,596 KB
testcase_39 AC 38 ms
53,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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