結果

問題 No.1050 Zero (Maximum)
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-16 19:10:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,096 KB
最終ジャッジ日時 2024-09-20 05:15:47
合計ジャッジ時間 2,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 45 ms
60,544 KB
testcase_02 AC 59 ms
63,744 KB
testcase_03 AC 69 ms
76,096 KB
testcase_04 AC 84 ms
70,144 KB
testcase_05 AC 89 ms
69,632 KB
testcase_06 AC 64 ms
66,304 KB
testcase_07 AC 68 ms
67,200 KB
testcase_08 AC 46 ms
63,104 KB
testcase_09 AC 58 ms
63,964 KB
testcase_10 AC 104 ms
71,808 KB
testcase_11 AC 87 ms
69,504 KB
testcase_12 AC 45 ms
60,324 KB
testcase_13 AC 37 ms
51,840 KB
testcase_14 AC 36 ms
52,224 KB
testcase_15 AC 37 ms
51,840 KB
testcase_16 AC 107 ms
71,808 KB
testcase_17 AC 117 ms
73,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mat_mul(A, B):
    size = len(A)
    res = [[0] * size for _ in range(size)]
    for i in range(size):
        for k in range(size):
            for j in range(size):
                res[i][j] += A[i][k] * B[k][j]
                res[i][j] %= mod
    return res


def mat_pow(A, n):
    size = len(A)
    res = [[0] * size for _ in range(size)]
    for i in range(size):
        res[i][i] = 1
    while n:
        if n & 1:
            res = mat_mul(res, A)
        A = mat_mul(A, A)
        n >>= 1
    return res


mod = 10 ** 9 + 7
M, K = map(int, input().split())

A = [[0] * M for _ in range(M)]

# add
for n in range(M):  # 元の数
    for m in range(M):  # add m
        i = (n + m) % M
        A[n][i] += 1

# mult
for a in range(M):
    for m in range(M):
        b = a * m % M
        A[a][b] += 1

ans = mat_pow(A, K)[0][0]
print(ans)
0