結果

問題 No.40 多項式の割り算
ユーザー szkhtsszkhts
提出日時 2023-06-11 07:44:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 402 ms / 5,000 ms
コード長 271 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 31,904 KB
最終ジャッジ日時 2025-01-03 03:44:10
合計ジャッジ時間 14,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 359 ms
31,648 KB
testcase_01 AC 359 ms
31,488 KB
testcase_02 AC 360 ms
31,640 KB
testcase_03 AC 373 ms
31,516 KB
testcase_04 AC 363 ms
31,508 KB
testcase_05 AC 366 ms
31,268 KB
testcase_06 AC 371 ms
31,396 KB
testcase_07 AC 357 ms
31,380 KB
testcase_08 AC 357 ms
31,380 KB
testcase_09 AC 360 ms
31,272 KB
testcase_10 AC 365 ms
31,380 KB
testcase_11 AC 402 ms
31,388 KB
testcase_12 AC 365 ms
31,380 KB
testcase_13 AC 361 ms
31,520 KB
testcase_14 AC 354 ms
31,384 KB
testcase_15 AC 361 ms
31,380 KB
testcase_16 AC 364 ms
31,380 KB
testcase_17 AC 356 ms
31,388 KB
testcase_18 AC 354 ms
31,516 KB
testcase_19 AC 376 ms
31,512 KB
testcase_20 AC 352 ms
31,388 KB
testcase_21 AC 372 ms
31,516 KB
testcase_22 AC 381 ms
31,392 KB
testcase_23 AC 354 ms
31,636 KB
testcase_24 AC 374 ms
31,504 KB
testcase_25 AC 361 ms
31,524 KB
testcase_26 AC 367 ms
31,520 KB
testcase_27 AC 376 ms
31,392 KB
testcase_28 AC 356 ms
31,384 KB
testcase_29 AC 367 ms
31,384 KB
testcase_30 AC 362 ms
31,888 KB
testcase_31 AC 362 ms
31,888 KB
testcase_32 AC 367 ms
31,516 KB
testcase_33 AC 358 ms
31,904 KB
testcase_34 AC 352 ms
31,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

D = int(input())
a = list(map(int, input().split())) 

for i in range(D, 2, -1):
    a[i - 2] += a[i]
    a[i] = 0

ans = 0
if len(a) >= 3:
    if a[2]:
        ans = 2
    elif a[1]:
        ans = 1

print(ans)
print(" ".join(map(str, a[0:ans + 1])))
0