結果

問題 No.1064 ∪∩∩ / Cup Cap Cap
ユーザー mlihua09mlihua09
提出日時 2020-09-17 02:29:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 53,648 KB
最終ジャッジ日時 2024-06-22 03:55:47
合計ジャッジ時間 2,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,384 KB
testcase_01 AC 37 ms
52,272 KB
testcase_02 AC 36 ms
52,436 KB
testcase_03 AC 34 ms
53,260 KB
testcase_04 AC 36 ms
52,568 KB
testcase_05 AC 33 ms
52,668 KB
testcase_06 AC 33 ms
52,960 KB
testcase_07 AC 32 ms
53,428 KB
testcase_08 AC 32 ms
52,120 KB
testcase_09 AC 34 ms
52,208 KB
testcase_10 AC 37 ms
52,880 KB
testcase_11 AC 36 ms
52,068 KB
testcase_12 AC 36 ms
52,212 KB
testcase_13 AC 35 ms
53,504 KB
testcase_14 AC 34 ms
52,268 KB
testcase_15 AC 34 ms
52,640 KB
testcase_16 AC 32 ms
52,132 KB
testcase_17 AC 33 ms
52,972 KB
testcase_18 AC 32 ms
52,592 KB
testcase_19 AC 34 ms
53,224 KB
testcase_20 AC 33 ms
52,544 KB
testcase_21 AC 33 ms
52,324 KB
testcase_22 AC 32 ms
53,224 KB
testcase_23 AC 35 ms
52,612 KB
testcase_24 AC 36 ms
52,772 KB
testcase_25 AC 34 ms
53,648 KB
testcase_26 AC 34 ms
52,692 KB
testcase_27 AC 34 ms
52,000 KB
testcase_28 AC 32 ms
53,044 KB
testcase_29 AC 33 ms
52,792 KB
testcase_30 AC 32 ms
52,916 KB
testcase_31 AC 32 ms
52,292 KB
testcase_32 AC 33 ms
52,664 KB
testcase_33 AC 33 ms
52,340 KB
testcase_34 AC 32 ms
52,816 KB
testcase_35 AC 33 ms
53,208 KB
testcase_36 AC 33 ms
52,584 KB
testcase_37 AC 33 ms
52,468 KB
testcase_38 AC 33 ms
52,152 KB
testcase_39 AC 32 ms
53,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


a, b, c, d = map(int, input().split())

D = (a - c) ** 2 - 8 * (b - d)

if D > 0:
    print((a + c) / 2, (b + d) / 2)
    
elif D == 0:
    print('Yes')
    
else:
    print('No')
0