結果

問題 No.2857 Div Array
ユーザー nikoro256nikoro256
提出日時 2024-08-25 14:32:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 909 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 94,820 KB
最終ジャッジ日時 2024-08-25 14:32:14
合計ジャッジ時間 5,526 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,984 KB
testcase_01 AC 45 ms
60,684 KB
testcase_02 AC 47 ms
60,412 KB
testcase_03 AC 47 ms
60,948 KB
testcase_04 AC 44 ms
59,872 KB
testcase_05 AC 45 ms
61,104 KB
testcase_06 AC 45 ms
60,632 KB
testcase_07 AC 49 ms
62,140 KB
testcase_08 AC 48 ms
61,200 KB
testcase_09 AC 67 ms
64,660 KB
testcase_10 AC 1,224 ms
76,332 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

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,M,K=map(int,input().split())
A=[[0 for _ in range(M)] for _ in range(M)]
p=998244353
for i in range(1,M+1):
    for j in range(1,M+1):
        if abs(M//i-M//j)<=K:
            A[i-1][j-1]=1
B=mat_pow(A,N-1,p)
mul=mat_mul([[1 for _ in range(M)]],B,p)
print(sum(mul[0])%p)
0