結果

問題 No.1112 冥界の音楽
ユーザー tanon710tanon710
提出日時 2020-07-11 00:30:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-10-11 20:58:35
合計ジャッジ時間 3,323 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
67,072 KB
testcase_01 AC 44 ms
60,288 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 45 ms
60,800 KB
testcase_04 AC 44 ms
60,800 KB
testcase_05 AC 45 ms
60,800 KB
testcase_06 AC 76 ms
72,064 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 50 ms
61,056 KB
testcase_09 AC 59 ms
66,688 KB
testcase_10 AC 46 ms
60,672 KB
testcase_11 AC 60 ms
66,944 KB
testcase_12 AC 45 ms
61,056 KB
testcase_13 AC 78 ms
72,064 KB
testcase_14 AC 81 ms
72,960 KB
testcase_15 AC 60 ms
67,584 KB
testcase_16 AC 37 ms
51,840 KB
testcase_17 AC 62 ms
67,908 KB
testcase_18 AC 61 ms
67,456 KB
testcase_19 AC 38 ms
52,864 KB
testcase_20 AC 56 ms
65,664 KB
testcase_21 AC 78 ms
72,064 KB
testcase_22 AC 79 ms
72,960 KB
testcase_23 AC 62 ms
67,328 KB
testcase_24 AC 40 ms
51,968 KB
testcase_25 AC 38 ms
52,352 KB
testcase_26 AC 46 ms
61,696 KB
testcase_27 AC 45 ms
61,440 KB
testcase_28 AC 48 ms
62,080 KB
testcase_29 AC 38 ms
51,968 KB
testcase_30 AC 63 ms
68,352 KB
testcase_31 AC 47 ms
62,080 KB
testcase_32 AC 65 ms
69,120 KB
testcase_33 AC 45 ms
61,312 KB
testcase_34 AC 38 ms
52,992 KB
testcase_35 AC 46 ms
61,184 KB
testcase_36 AC 93 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
input=sys.stdin.readline

mod=10**9+7

def calc(mat1,mat2):
    n=len(mat1)
    ret=[[0]*n for _ in range(n)]
    for i in range(n):
        for j in range(n):
            tmp=0
            for k in range(n):
                tmp+=mat1[i][k]*mat2[k][j]
                tmp%=mod
            ret[i][j]=tmp
    return ret

k,m,n=map(int,input().split())
n-=2
edge=[list(map(int,input().split())) for _ in range(m)]
vec=[0]*(k**2)
mat=[[0]*(k**2) for _ in range(k**2)]
for p,q,r in edge:
    if p==1:
        vec[(p-1)*k+(q-1)]=1
    mat[(q-1)*k+(r-1)][(p-1)*k+(q-1)]=1
tmp=[[0]*(k**2) for _ in range(k**2)]
for i in range(k**2):
    tmp[i][i]=1
for i in range(60):
    if n&(1<<i):
        tmp=calc(tmp,mat)
    mat=calc(mat,mat)
cnt=[0]*(k**2)
for i in range(k**2):
    tcnt=0
    for j in range(k**2):
        tcnt+=tmp[i][j]*vec[j]
        tcnt%=mod
    cnt[i]=tcnt
ans=0
for i in range(k):
    ans+=cnt[i*k]
    ans%=mod
print(ans)
0