結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,580 KB
testcase_01 AC 47 ms
61,372 KB
testcase_02 AC 83 ms
63,892 KB
testcase_03 AC 80 ms
75,700 KB
testcase_04 AC 129 ms
70,444 KB
testcase_05 AC 136 ms
71,012 KB
testcase_06 AC 82 ms
67,028 KB
testcase_07 AC 95 ms
67,764 KB
testcase_08 AC 52 ms
63,412 KB
testcase_09 AC 67 ms
64,364 KB
testcase_10 AC 162 ms
73,196 KB
testcase_11 AC 126 ms
69,556 KB
testcase_12 AC 47 ms
62,516 KB
testcase_13 AC 39 ms
52,304 KB
testcase_14 AC 38 ms
52,680 KB
testcase_15 AC 40 ms
52,996 KB
testcase_16 AC 169 ms
73,716 KB
testcase_17 AC 180 ms
73,940 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