結果

問題 No.40 多項式の割り算
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-17 00:48:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 62,324 KB
最終ジャッジ日時 2024-06-01 04:27:05
合計ジャッジ時間 2,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,472 KB
testcase_01 AC 40 ms
52,380 KB
testcase_02 AC 38 ms
52,324 KB
testcase_03 AC 40 ms
53,076 KB
testcase_04 AC 45 ms
62,152 KB
testcase_05 AC 45 ms
62,120 KB
testcase_06 AC 46 ms
61,300 KB
testcase_07 AC 45 ms
61,900 KB
testcase_08 AC 39 ms
52,408 KB
testcase_09 AC 48 ms
61,732 KB
testcase_10 AC 46 ms
62,324 KB
testcase_11 AC 46 ms
61,400 KB
testcase_12 AC 46 ms
60,380 KB
testcase_13 AC 46 ms
62,320 KB
testcase_14 AC 45 ms
60,220 KB
testcase_15 AC 46 ms
61,244 KB
testcase_16 AC 47 ms
61,308 KB
testcase_17 AC 44 ms
59,748 KB
testcase_18 AC 45 ms
61,808 KB
testcase_19 AC 45 ms
61,456 KB
testcase_20 AC 46 ms
61,032 KB
testcase_21 AC 45 ms
60,312 KB
testcase_22 AC 45 ms
60,600 KB
testcase_23 AC 45 ms
60,988 KB
testcase_24 AC 46 ms
61,072 KB
testcase_25 AC 39 ms
53,100 KB
testcase_26 AC 39 ms
52,696 KB
testcase_27 AC 39 ms
53,320 KB
testcase_28 WA -
testcase_29 AC 39 ms
52,348 KB
testcase_30 AC 39 ms
52,860 KB
testcase_31 AC 38 ms
52,132 KB
testcase_32 AC 39 ms
52,068 KB
testcase_33 AC 40 ms
52,900 KB
testcase_34 AC 39 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())
A = list(map(int, input().split()))
x = 0
y = 0
for i, a in enumerate(A):
    if i%2 == 0:
        x += a
        y += a
    else:
        x += a
        y -= a
b0 = A[0]
b1 = (x-y)//2
b2 = (x+y-2*b0)//2
if b2 == 0:
    if b1 == 0:
        print(0)
        print(0)
    else:
        print(1)
        print(b0, b1)
else:
    print(2)
    print(b0, b1, b2)
0