結果

問題 No.2754 Cumulate and Drop
ユーザー nikoro256nikoro256
提出日時 2024-05-10 22:50:00
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 830 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 848,460 KB
最終ジャッジ日時 2024-05-10 22:50:04
合計ジャッジ時間 3,833 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,120 KB
testcase_01 AC 44 ms
59,984 KB
testcase_02 AC 39 ms
52,288 KB
testcase_03 AC 274 ms
70,412 KB
testcase_04 AC 104 ms
76,024 KB
testcase_05 AC 321 ms
72,040 KB
testcase_06 AC 48 ms
61,496 KB
testcase_07 AC 105 ms
66,400 KB
testcase_08 MLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
行列累乗ライブラリ
使用上の注意→ベクトルを入れる場合も二次元配列にする。
'''
def mat_mul(a, b, m) :
    I, J, K = len(a), len(b[0]), len(b)
    c = [[0] * J for _ in range(I)]
    for i in range(I) :
        for j in range(J) :
            for k in range(K) :
                c[i][j] += a[i][k] * b[k][j]
                c[i][j] %= m
    return c


def mat_pow(x, n, m):
    y = [[0] * len(x) for _ in range(len(x))]

    for i in range(len(x)):
        y[i][i] = 1

    while n > 0:
        if n & 1:
            y = mat_mul(x, y, m)
        x = mat_mul(x, x, m)
        n >>= 1

    return y

N=int(input())
A=list(map(int,input().split()))
A=[A]
B=[]
B.append([1]*N)
for i in range(1,N):
    B.append([0]*(i-1)+[1]*(N-i+1))
p=998244353
pow=mat_pow(B,N-1,p)
print(mat_mul(A,pow,p)[0][0])
0