結果

問題 No.1112 冥界の音楽
ユーザー anagohirameanagohirame
提出日時 2020-07-10 22:56:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 615 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,792 KB
最終ジャッジ日時 2024-10-11 13:36:41
合計ジャッジ時間 23,190 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 552 ms
44,540 KB
testcase_01 AC 549 ms
44,280 KB
testcase_02 AC 559 ms
44,152 KB
testcase_03 AC 548 ms
44,288 KB
testcase_04 AC 542 ms
44,032 KB
testcase_05 AC 541 ms
44,292 KB
testcase_06 AC 544 ms
44,412 KB
testcase_07 AC 537 ms
44,156 KB
testcase_08 AC 541 ms
44,404 KB
testcase_09 AC 536 ms
44,148 KB
testcase_10 AC 535 ms
44,536 KB
testcase_11 AC 541 ms
44,660 KB
testcase_12 AC 543 ms
44,136 KB
testcase_13 AC 545 ms
44,408 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 538 ms
44,404 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 550 ms
44,148 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 544 ms
44,152 KB
testcase_25 AC 544 ms
43,900 KB
testcase_26 AC 543 ms
44,416 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 535 ms
44,020 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 532 ms
44,540 KB
testcase_34 AC 546 ms
43,804 KB
testcase_35 AC 543 ms
44,528 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import sys
def input():
	return sys.stdin.readline()[:-1]

MOD = 10**9+7

def mat_pow(mat, exp):
	size = len(mat)
	res = np.eye(size)
	cnt = 0
	while (1<<cnt) <= exp:
		if (exp>>cnt)&1:
			res = res @ mat
			res %= MOD
		mat = mat @ mat
		mat %= MOD
		cnt += 1
	return res

k, m, n = map(int, input().split())
pre = np.zeros((k*k, 1))
for i in range(k):
	pre[i][0] = 1
mat = np.zeros((k*k, k*k))
for _ in range(m):
	p, q, r = map(int, input().split())
	mat[(q-1)*k + r-1][(p-1)*k + q-1] += 1
res = mat_pow(mat, n-2) @ pre
ans = 0
for i in range(k):
	ans += int(res[i*k][0])
	ans %= MOD
print(ans)
0