結果

問題 No.1111 コード進行
ユーザー anagohirameanagohirame
提出日時 2020-07-10 22:41:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 933 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 135,868 KB
最終ジャッジ日時 2024-10-11 10:02:58
合計ジャッジ時間 8,592 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,528 KB
testcase_01 AC 48 ms
61,416 KB
testcase_02 AC 42 ms
53,788 KB
testcase_03 AC 43 ms
54,128 KB
testcase_04 AC 41 ms
53,120 KB
testcase_05 AC 59 ms
66,932 KB
testcase_06 AC 81 ms
77,880 KB
testcase_07 AC 80 ms
77,176 KB
testcase_08 AC 68 ms
72,604 KB
testcase_09 AC 70 ms
73,328 KB
testcase_10 AC 81 ms
77,320 KB
testcase_11 AC 66 ms
72,148 KB
testcase_12 AC 83 ms
78,136 KB
testcase_13 AC 78 ms
77,780 KB
testcase_14 AC 101 ms
78,776 KB
testcase_15 AC 72 ms
73,732 KB
testcase_16 AC 85 ms
78,072 KB
testcase_17 AC 79 ms
77,192 KB
testcase_18 AC 63 ms
71,360 KB
testcase_19 AC 52 ms
65,268 KB
testcase_20 AC 67 ms
71,716 KB
testcase_21 AC 55 ms
65,476 KB
testcase_22 AC 89 ms
78,416 KB
testcase_23 AC 76 ms
76,952 KB
testcase_24 AC 77 ms
77,412 KB
testcase_25 AC 91 ms
78,028 KB
testcase_26 AC 81 ms
77,428 KB
testcase_27 AC 66 ms
69,540 KB
testcase_28 AC 197 ms
85,552 KB
testcase_29 AC 137 ms
79,048 KB
testcase_30 AC 182 ms
82,992 KB
testcase_31 AC 85 ms
77,324 KB
testcase_32 AC 205 ms
79,684 KB
testcase_33 AC 244 ms
85,468 KB
testcase_34 AC 162 ms
82,340 KB
testcase_35 AC 188 ms
82,632 KB
testcase_36 AC 456 ms
92,664 KB
testcase_37 AC 184 ms
78,424 KB
testcase_38 AC 158 ms
77,908 KB
testcase_39 AC 265 ms
83,748 KB
testcase_40 AC 358 ms
87,500 KB
testcase_41 AC 244 ms
86,316 KB
testcase_42 AC 249 ms
80,396 KB
testcase_43 AC 250 ms
82,688 KB
testcase_44 AC 126 ms
77,748 KB
testcase_45 AC 218 ms
82,564 KB
testcase_46 AC 87 ms
76,428 KB
testcase_47 AC 933 ms
135,868 KB
testcase_48 AC 78 ms
76,296 KB
testcase_49 AC 79 ms
75,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
	return sys.stdin.buffer.readline()[:-1]

MAX = 300
MOD = 10**9+7
n, m, K = map(int, input().split())
dp = [[0 for _ in range(K+1)] for _ in range(MAX)]
for i in range(MAX):
	dp[i][0] = 1

adj = [[] for _ in range(MAX)]
for _ in range(m):
	p, q, c = map(int, input().split())
	adj[p-1].append((q-1, c))

for _ in range(n-1):
	new = [[0 for _ in range(K+1)] for _ in range(MAX)]
	for p in range(MAX):
		for j in range(K+1):
			for q, c in adj[p]:
				if j+c <= K:
					new[q][j+c] += dp[p][j]
					new[q][j+c] %= MOD
	dp = new

ans = 0
for p in range(MAX):
	ans += dp[p][K]
	ans %= MOD
print(ans)
0