結果

問題 No.1064 ∪∩∩ / Cup Cap Cap
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-09-22 22:17:36
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 117 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 10,568 KB
実行使用メモリ 7,956 KB
最終ジャッジ日時 2023-09-09 04:51:37
合計ジャッジ時間 2,629 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,880 KB
testcase_01 AC 16 ms
7,884 KB
testcase_02 WA -
testcase_03 AC 15 ms
7,796 KB
testcase_04 WA -
testcase_05 AC 15 ms
7,784 KB
testcase_06 AC 15 ms
7,892 KB
testcase_07 AC 15 ms
7,888 KB
testcase_08 AC 15 ms
7,952 KB
testcase_09 AC 15 ms
7,888 KB
testcase_10 AC 15 ms
7,796 KB
testcase_11 AC 15 ms
7,780 KB
testcase_12 AC 15 ms
7,748 KB
testcase_13 AC 15 ms
7,748 KB
testcase_14 AC 15 ms
7,800 KB
testcase_15 AC 15 ms
7,824 KB
testcase_16 AC 15 ms
7,828 KB
testcase_17 AC 15 ms
7,836 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 15 ms
7,828 KB
testcase_21 WA -
testcase_22 AC 15 ms
7,804 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 15 ms
7,748 KB
testcase_36 AC 15 ms
7,744 KB
testcase_37 AC 15 ms
7,832 KB
testcase_38 WA -
testcase_39 AC 16 ms
7,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d=map(int,input().split())
D,P=(a-c)**2-8*(b-d),print
if d<0:P("No")
elif d==0:P("Yes")
else:P((a+c)/2,(b+d)/2)
0