結果

問題 No.40 多項式の割り算
ユーザー rlangevinrlangevin
提出日時 2023-01-14 16:36:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 62,516 KB
最終ジャッジ日時 2024-06-07 17:52:21
合計ジャッジ時間 3,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,768 KB
testcase_01 AC 36 ms
53,148 KB
testcase_02 AC 36 ms
52,368 KB
testcase_03 AC 35 ms
53,744 KB
testcase_04 AC 42 ms
60,036 KB
testcase_05 AC 42 ms
61,744 KB
testcase_06 AC 42 ms
61,140 KB
testcase_07 AC 42 ms
62,020 KB
testcase_08 AC 37 ms
52,964 KB
testcase_09 AC 43 ms
61,136 KB
testcase_10 AC 43 ms
61,012 KB
testcase_11 AC 42 ms
60,632 KB
testcase_12 AC 41 ms
60,052 KB
testcase_13 AC 41 ms
60,368 KB
testcase_14 AC 42 ms
60,656 KB
testcase_15 AC 41 ms
61,404 KB
testcase_16 AC 42 ms
61,096 KB
testcase_17 AC 40 ms
61,056 KB
testcase_18 AC 40 ms
61,488 KB
testcase_19 AC 40 ms
62,516 KB
testcase_20 AC 41 ms
59,776 KB
testcase_21 AC 41 ms
60,868 KB
testcase_22 AC 40 ms
60,020 KB
testcase_23 AC 42 ms
61,172 KB
testcase_24 AC 41 ms
61,540 KB
testcase_25 AC 35 ms
52,004 KB
testcase_26 AC 34 ms
52,192 KB
testcase_27 AC 36 ms
51,812 KB
testcase_28 AC 35 ms
52,640 KB
testcase_29 AC 36 ms
52,672 KB
testcase_30 AC 34 ms
52,760 KB
testcase_31 AC 37 ms
52,748 KB
testcase_32 AC 35 ms
52,612 KB
testcase_33 AC 35 ms
52,364 KB
testcase_34 AC 34 ms
52,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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