結果

問題 No.40 多項式の割り算
ユーザー flippergoflippergo
提出日時 2024-12-13 07:52:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 430 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 64,164 KB
最終ジャッジ日時 2024-12-13 07:52:34
合計ジャッジ時間 3,456 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,088 KB
testcase_01 AC 35 ms
52,688 KB
testcase_02 AC 36 ms
52,188 KB
testcase_03 AC 36 ms
53,960 KB
testcase_04 AC 44 ms
62,680 KB
testcase_05 AC 43 ms
62,440 KB
testcase_06 AC 42 ms
63,728 KB
testcase_07 AC 43 ms
64,164 KB
testcase_08 AC 42 ms
59,920 KB
testcase_09 AC 43 ms
62,836 KB
testcase_10 AC 44 ms
63,460 KB
testcase_11 AC 49 ms
61,640 KB
testcase_12 AC 42 ms
62,204 KB
testcase_13 AC 45 ms
63,028 KB
testcase_14 AC 43 ms
62,328 KB
testcase_15 AC 43 ms
63,376 KB
testcase_16 AC 43 ms
62,696 KB
testcase_17 AC 42 ms
60,952 KB
testcase_18 AC 44 ms
62,848 KB
testcase_19 AC 46 ms
63,504 KB
testcase_20 AC 45 ms
61,640 KB
testcase_21 AC 42 ms
60,696 KB
testcase_22 AC 44 ms
62,076 KB
testcase_23 AC 44 ms
61,988 KB
testcase_24 AC 44 ms
62,652 KB
testcase_25 AC 36 ms
53,636 KB
testcase_26 AC 36 ms
52,744 KB
testcase_27 AC 36 ms
53,076 KB
testcase_28 AC 35 ms
52,820 KB
testcase_29 AC 36 ms
52,252 KB
testcase_30 AC 38 ms
52,340 KB
testcase_31 AC 35 ms
52,956 KB
testcase_32 AC 36 ms
52,144 KB
testcase_33 AC 40 ms
53,012 KB
testcase_34 AC 37 ms
52,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())
A = list(map(int,input().split()))
B = [1,0,-1,0]
if D<3:
    print(D)
    print(*A)
else:
    A = A[::-1]
    for i in range(D-4+2):
        a = A[i]
        for j in range(4):
            A[i+j] -= a*B[j]
    ind = -1
    for i in range(D+1):
        if A[i]!=0:
            ind = i
            break
    if ind==-1:
        print(0)
        print(0)
    else:
        print(D-ind)
        print(*A[ind:][::-1])
0