結果

問題 No.1112 冥界の音楽
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-12 15:04:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 431 bytes
コンパイル時間 1,122 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 49,468 KB
最終ジャッジ日時 2024-10-15 03:37:19
合計ジャッジ時間 11,981 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
49,468 KB
testcase_01 AC 528 ms
43,960 KB
testcase_02 AC 524 ms
44,084 KB
testcase_03 AC 529 ms
44,028 KB
testcase_04 AC 532 ms
44,216 KB
testcase_05 AC 531 ms
43,964 KB
testcase_06 AC 526 ms
43,960 KB
testcase_07 AC 528 ms
44,216 KB
testcase_08 AC 529 ms
43,968 KB
testcase_09 AC 533 ms
44,220 KB
testcase_10 AC 530 ms
43,956 KB
testcase_11 AC 527 ms
44,344 KB
testcase_12 AC 525 ms
44,080 KB
testcase_13 AC 526 ms
44,344 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

k,m,n = map(int, input().split())
mod = 10**9+7
A = [[0]*(k**2) for _ in range(k**2)]

for _ in range(m):
    p,q,r = map(int, input().split())
    s = (p-1)*k+q-1
    t = (q-1)*k+r-1
    A[s][t] = 1

A=np.array(A)
B=np.eye(A.shape[0],A.shape[1], dtype=int)

for _ in range(n-2):
    B = np.dot(B,A)
    B%=mod
ans = 0
for i in range(k):
    for j in range(k):
        ans+=B[i][j*k]
        ans%=mod
print(ans)
0