結果

問題 No.1050 Zero (Maximum)
ユーザー wattaiheiwattaihei
提出日時 2020-05-08 23:01:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,024 KB
最終ジャッジ日時 2024-07-04 01:07:51
合計ジャッジ時間 3,178 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,544 KB
testcase_01 AC 45 ms
61,848 KB
testcase_02 AC 96 ms
64,488 KB
testcase_03 AC 93 ms
76,024 KB
testcase_04 AC 180 ms
70,140 KB
testcase_05 AC 191 ms
71,416 KB
testcase_06 AC 107 ms
67,272 KB
testcase_07 AC 120 ms
68,912 KB
testcase_08 AC 52 ms
64,328 KB
testcase_09 AC 81 ms
64,616 KB
testcase_10 AC 238 ms
72,716 KB
testcase_11 AC 176 ms
70,468 KB
testcase_12 AC 46 ms
63,012 KB
testcase_13 AC 35 ms
52,252 KB
testcase_14 AC 36 ms
52,208 KB
testcase_15 AC 36 ms
53,080 KB
testcase_16 AC 250 ms
73,108 KB
testcase_17 AC 276 ms
73,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7
# matrix power
def matintersection(matA, matB, mod):
    length = len(matA)
    matR = [[0]*length for _ in range(length)]
    for i in range(length):
        for j in range(length):
            for k in range(length):
                matR[i][j] += matA[i][k]*matB[k][j] % mod
                matR[i][j] %= mod
    return matR

def power_mat(matA, n, mod):
    bi = str(format(n,"b"))#2進表現に
    length = len(matA)
    res = [[1 if i == j else 0 for i in range(length)] for j in range(length)]
    for i in range(len(bi)):
        res = matintersection(res, res, mod)
        if bi[i] == "1":
            res = matintersection(res, matA, mod)
    return res

N, K = map(int, input().split())

D = [[0]*N for _ in range(N)]
for n in range(N):
    for m in range(N):
        D[(m*n)%N][n] += 1
        D[(m+n)%N][n] += 1

A = power_mat(D, K, mod)
print(A[0][0])
0