結果

問題 No.1050 Zero (Maximum)
ユーザー rlangevinrlangevin
提出日時 2023-08-21 12:31:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-05-08 17:49:42
合計ジャッジ時間 3,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,736 KB
testcase_01 AC 48 ms
60,416 KB
testcase_02 AC 79 ms
63,744 KB
testcase_03 AC 82 ms
75,648 KB
testcase_04 AC 128 ms
70,272 KB
testcase_05 AC 136 ms
70,528 KB
testcase_06 AC 86 ms
66,816 KB
testcase_07 AC 93 ms
67,200 KB
testcase_08 AC 53 ms
63,400 KB
testcase_09 AC 69 ms
64,000 KB
testcase_10 AC 158 ms
71,936 KB
testcase_11 AC 123 ms
69,120 KB
testcase_12 AC 48 ms
60,800 KB
testcase_13 AC 40 ms
52,272 KB
testcase_14 AC 40 ms
51,712 KB
testcase_15 AC 41 ms
52,568 KB
testcase_16 AC 169 ms
72,960 KB
testcase_17 AC 182 ms
74,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def Matprod(A, B, mod, N):
    temp = [0] * N*N
    for i in range(N):
        for j in range(N):
            ij = i * N + j
            for k in range(N):
                temp[ij] += A[i*N+k] * B[k*N+j]
                temp[ij] %= mod
    return temp

def Matpow_Linear(A, M, mod, N):
    Mat = [0] * N*N
    for i in range(N):
        Mat[i*N+i] = 1
         
    while M:
        if M & 1:
            Mat = Matprod(Mat, A, mod, N)
        A = Matprod(A, A, mod, N)
        M >>= 1
    return Mat  

M, K = map(int, input().split())
A = [0] * (M*M)
for i in range(M):
    for j in range(M):
        nex = (i+j)%M
        A[nex*M+i] += 1
        nex = (i*j)%M
        A[nex*M+i] += 1

mod = 10 ** 9 + 7
A = Matpow_Linear(A, K, mod, M)
print(A[0]%mod)
0