結果

問題 No.1112 冥界の音楽
ユーザー convexineqconvexineq
提出日時 2021-05-11 02:34:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,860 KB
最終ジャッジ日時 2024-09-21 08:37:18
合計ジャッジ時間 3,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
60,800 KB
testcase_01 AC 49 ms
60,032 KB
testcase_02 AC 49 ms
61,312 KB
testcase_03 AC 46 ms
59,776 KB
testcase_04 AC 46 ms
60,672 KB
testcase_05 AC 46 ms
60,544 KB
testcase_06 AC 47 ms
60,800 KB
testcase_07 AC 45 ms
59,648 KB
testcase_08 AC 45 ms
59,648 KB
testcase_09 AC 50 ms
60,416 KB
testcase_10 AC 45 ms
60,032 KB
testcase_11 AC 46 ms
60,672 KB
testcase_12 AC 46 ms
60,288 KB
testcase_13 AC 47 ms
60,928 KB
testcase_14 AC 55 ms
64,640 KB
testcase_15 AC 55 ms
63,744 KB
testcase_16 AC 52 ms
64,512 KB
testcase_17 AC 54 ms
64,640 KB
testcase_18 AC 54 ms
64,512 KB
testcase_19 AC 52 ms
63,360 KB
testcase_20 AC 54 ms
63,744 KB
testcase_21 AC 59 ms
64,384 KB
testcase_22 AC 56 ms
64,256 KB
testcase_23 AC 53 ms
63,488 KB
testcase_24 AC 76 ms
75,392 KB
testcase_25 AC 78 ms
75,728 KB
testcase_26 AC 70 ms
73,544 KB
testcase_27 AC 68 ms
73,344 KB
testcase_28 AC 76 ms
75,520 KB
testcase_29 AC 70 ms
73,728 KB
testcase_30 AC 68 ms
73,248 KB
testcase_31 AC 68 ms
73,472 KB
testcase_32 AC 74 ms
75,608 KB
testcase_33 AC 69 ms
74,240 KB
testcase_34 AC 68 ms
72,960 KB
testcase_35 AC 69 ms
74,368 KB
testcase_36 AC 78 ms
75,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def matmul(A,B): # A,B: 行列
    res = [[0]*len(B[0]) for _ in [None]*len(A)]
    for i, resi in enumerate(res):
        for k, aik in enumerate(A[i]):
            for j,bkj in enumerate(B[k]):
                resi[j] += aik*bkj
                resi[j] %= MOD
    return res

def matpow(A,p): #A^p mod M
    if p%2:
        return matmul(A, matpow(A,p-1))
    elif p > 0:
        b = matpow(A,p//2)
        return matmul(b,b)
    else:
        return [[int(i==j) for j in range(len(A))] for i in range(len(A))]

MOD = 10**9+7
S = 36
k,m,n = map(int,input().split())
A = [[0]*S for _ in range(S)]
for _ in range(m):
    p,q,r = map(int,input().split())
    A[(p-1)*6+q-1][(q-1)*6+r-1] += 1

v = [0]*S
v[:6] = [1]*6
v = matmul([v],matpow(A,n-2))
print(sum(v[0][0:S:6])%MOD)
0