結果

問題 No.40 多項式の割り算
ユーザー dangodango
提出日時 2023-06-16 20:21:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 182 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 61,716 KB
最終ジャッジ日時 2024-06-24 12:07:38
合計ジャッジ時間 2,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,424 KB
testcase_01 AC 36 ms
52,020 KB
testcase_02 AC 35 ms
53,496 KB
testcase_03 AC 36 ms
52,820 KB
testcase_04 AC 41 ms
59,984 KB
testcase_05 AC 41 ms
60,512 KB
testcase_06 AC 42 ms
60,412 KB
testcase_07 AC 42 ms
61,716 KB
testcase_08 AC 35 ms
51,888 KB
testcase_09 AC 41 ms
60,800 KB
testcase_10 AC 43 ms
60,768 KB
testcase_11 AC 40 ms
59,776 KB
testcase_12 AC 40 ms
59,520 KB
testcase_13 AC 42 ms
60,560 KB
testcase_14 AC 42 ms
59,932 KB
testcase_15 AC 41 ms
60,164 KB
testcase_16 AC 41 ms
59,784 KB
testcase_17 AC 40 ms
58,976 KB
testcase_18 AC 41 ms
60,952 KB
testcase_19 AC 43 ms
61,268 KB
testcase_20 AC 41 ms
60,128 KB
testcase_21 AC 41 ms
59,088 KB
testcase_22 AC 40 ms
59,924 KB
testcase_23 AC 41 ms
60,328 KB
testcase_24 AC 41 ms
60,140 KB
testcase_25 AC 35 ms
52,308 KB
testcase_26 AC 35 ms
51,944 KB
testcase_27 AC 36 ms
52,376 KB
testcase_28 AC 35 ms
52,988 KB
testcase_29 AC 35 ms
51,620 KB
testcase_30 AC 36 ms
52,560 KB
testcase_31 AC 35 ms
52,752 KB
testcase_32 AC 35 ms
52,492 KB
testcase_33 AC 37 ms
51,888 KB
testcase_34 AC 37 ms
53,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())
A = list(map(int,input().split()))
for i in range(D, 2, -1):
    A[i - 2] += A[i]
K = min(len(A) - 1, 2)
while K and A[K] == 0:
    K -= 1
print(K)
print(*A[:K + 1])
0