結果

問題 No.1111 コード進行
ユーザー anagohirameanagohirame
提出日時 2020-07-10 22:30:24
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 720 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 515,584 KB
最終ジャッジ日時 2024-10-11 09:49:31
合計ジャッジ時間 15,808 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
63,744 KB
testcase_01 AC 46 ms
60,928 KB
testcase_02 AC 39 ms
53,812 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 40 ms
54,016 KB
testcase_05 AC 47 ms
64,896 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 46 ms
61,568 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 WA -
testcase_27 AC 48 ms
63,488 KB
testcase_28 AC 380 ms
282,880 KB
testcase_29 AC 204 ms
168,908 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 290 ms
224,988 KB
testcase_35 AC 374 ms
277,376 KB
testcase_36 AC 528 ms
293,940 KB
testcase_37 AC 242 ms
136,024 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 TLE -
testcase_41 AC 530 ms
316,712 KB
testcase_42 AC 263 ms
179,308 KB
testcase_43 WA -
testcase_44 AC 130 ms
123,136 KB
testcase_45 AC 274 ms
216,480 KB
testcase_46 AC 116 ms
90,520 KB
testcase_47 MLE -
testcase_48 AC 160 ms
90,992 KB
testcase_49 AC 102 ms
88,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

MOD = 10**9+7
n, m, k = map(int, input().split())
dp = [[[0 for _ in range(k+1)] for _ in range(300)] for _ in range(n)]
visited = [[[False for _ in range(k+1)] for _ in range(300)] for _ in range(n)]

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

def rec(i, j, l):
	if visited[i][j][l]:
		return dp[i][j][l]
	if i == 0 and l == 0:
		return 1
	elif i <= 0 or l < 0:
		return 0
	else:
		res = 0
		for p, c in adj[j]:
			res += rec(i-1, p, l-c)
			res %= MOD
		dp[i][j][l] = res
		visited[i][j][l] = True
		return res

ans = 0
for j in range(300):
	ans += rec(n-1, j, k)
	ans %= MOD

print(ans)
0