結果

問題 No.1112 冥界の音楽
ユーザー qumazakiqumazaki
提出日時 2020-07-11 02:08:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 940 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 76,812 KB
最終ジャッジ日時 2024-10-11 23:56:43
合計ジャッジ時間 5,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
73,584 KB
testcase_01 AC 94 ms
73,480 KB
testcase_02 AC 100 ms
74,088 KB
testcase_03 AC 94 ms
72,784 KB
testcase_04 AC 99 ms
73,972 KB
testcase_05 AC 98 ms
73,344 KB
testcase_06 AC 98 ms
73,856 KB
testcase_07 AC 99 ms
71,808 KB
testcase_08 AC 97 ms
71,680 KB
testcase_09 AC 95 ms
71,936 KB
testcase_10 AC 94 ms
71,680 KB
testcase_11 AC 101 ms
73,600 KB
testcase_12 AC 99 ms
73,272 KB
testcase_13 AC 93 ms
71,680 KB
testcase_14 AC 111 ms
76,784 KB
testcase_15 AC 109 ms
76,672 KB
testcase_16 AC 114 ms
76,544 KB
testcase_17 AC 111 ms
76,800 KB
testcase_18 AC 111 ms
76,544 KB
testcase_19 AC 110 ms
76,544 KB
testcase_20 AC 110 ms
76,800 KB
testcase_21 AC 109 ms
76,544 KB
testcase_22 AC 110 ms
76,800 KB
testcase_23 AC 109 ms
76,544 KB
testcase_24 AC 128 ms
76,416 KB
testcase_25 AC 124 ms
76,416 KB
testcase_26 AC 121 ms
76,812 KB
testcase_27 AC 118 ms
76,672 KB
testcase_28 AC 127 ms
76,544 KB
testcase_29 AC 121 ms
76,800 KB
testcase_30 AC 119 ms
76,544 KB
testcase_31 AC 122 ms
76,732 KB
testcase_32 AC 124 ms
76,672 KB
testcase_33 AC 124 ms
76,544 KB
testcase_34 AC 121 ms
76,544 KB
testcase_35 AC 120 ms
76,672 KB
testcase_36 AC 126 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

k,m,n = map(int,readline().split())
pqr = list(map(int,read().split()))
mod = 10**9+7

mat = [[0] * 36 for _ in range(36)]
it = iter(pqr)
for p,q,r in zip(it,it,it):
    p,q,r = p-1,q-1,r-1
    mat[(p*6+q)][(q*6+r)] = 1

def dot_mod(a,b):
    res = [[0] * 36 for _ in range(36)]
    for i in range(36):
        for j in range(36):
            for k in range(36):
                res[i][j] += a[i][k] * b[k][j]
                res[i][j] %= mod
    return res

mat_ex = [mat]
for i in range(65):
    mat_ex.append( dot_mod(mat_ex[-1],mat_ex[-1]) )

mat_n = [[0] * 36 for _ in range(36)]
for i in range(36):
    mat_n[i][i] = 1

x = n-2
for i in range(65):
    if((x>>i)&1):
        mat_n = dot_mod(mat_n,mat_ex[i])

ans = 0
for i in range(6):
    for j in range(6):
        ans += mat_n[i][6*j]
        ans %= mod

print(ans)
0