結果

問題 No.40 多項式の割り算
ユーザー TomoyarnTomoyarn
提出日時 2023-08-26 13:41:01
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 231 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 66,288 KB
最終ジャッジ日時 2024-06-07 08:55:52
合計ジャッジ時間 2,871 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,752 KB
testcase_01 AC 37 ms
53,660 KB
testcase_02 AC 38 ms
52,728 KB
testcase_03 AC 38 ms
52,624 KB
testcase_04 AC 42 ms
60,124 KB
testcase_05 AC 42 ms
60,908 KB
testcase_06 AC 42 ms
62,012 KB
testcase_07 AC 43 ms
60,800 KB
testcase_08 AC 37 ms
52,680 KB
testcase_09 AC 42 ms
59,976 KB
testcase_10 AC 42 ms
60,580 KB
testcase_11 AC 41 ms
60,472 KB
testcase_12 AC 41 ms
59,276 KB
testcase_13 AC 42 ms
61,048 KB
testcase_14 AC 41 ms
59,672 KB
testcase_15 AC 41 ms
61,120 KB
testcase_16 AC 42 ms
60,540 KB
testcase_17 AC 41 ms
60,004 KB
testcase_18 AC 42 ms
60,868 KB
testcase_19 AC 43 ms
60,928 KB
testcase_20 AC 41 ms
59,468 KB
testcase_21 AC 43 ms
60,440 KB
testcase_22 AC 42 ms
59,020 KB
testcase_23 AC 42 ms
61,044 KB
testcase_24 AC 43 ms
61,296 KB
testcase_25 AC 37 ms
52,500 KB
testcase_26 AC 36 ms
53,016 KB
testcase_27 AC 36 ms
52,852 KB
testcase_28 RE -
testcase_29 AC 36 ms
53,084 KB
testcase_30 AC 36 ms
53,108 KB
testcase_31 AC 37 ms
53,020 KB
testcase_32 AC 36 ms
51,980 KB
testcase_33 AC 36 ms
52,612 KB
testcase_34 AC 37 ms
52,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())
b = list(map(int, input().split()))
b = b[::-1]
for i in range(D - 2):
    b[i + 2] += b[i]
    b[i] = 0

b = b[::-1][:3]
if b[2] == 0:
    b.pop(-1)
    if b[1] == 0:
        b.pop(-1)
print(len(b) - 1)
print(*b)
0