結果

問題 No.1111 コード進行
ユーザー O2MTO2MT
提出日時 2021-06-09 16:30:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 756 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 295,520 KB
最終ジャッジ日時 2024-05-06 04:36:55
合計ジャッジ時間 7,711 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,416 KB
testcase_01 AC 40 ms
58,752 KB
testcase_02 AC 37 ms
52,864 KB
testcase_03 AC 37 ms
52,864 KB
testcase_04 AC 35 ms
52,992 KB
testcase_05 AC 40 ms
60,928 KB
testcase_06 AC 55 ms
68,864 KB
testcase_07 AC 62 ms
71,884 KB
testcase_08 AC 55 ms
68,736 KB
testcase_09 AC 51 ms
65,792 KB
testcase_10 AC 52 ms
72,448 KB
testcase_11 AC 50 ms
66,560 KB
testcase_12 AC 56 ms
69,632 KB
testcase_13 AC 51 ms
66,688 KB
testcase_14 AC 64 ms
73,472 KB
testcase_15 AC 51 ms
66,560 KB
testcase_16 AC 57 ms
70,400 KB
testcase_17 AC 51 ms
71,936 KB
testcase_18 AC 45 ms
63,232 KB
testcase_19 AC 42 ms
58,880 KB
testcase_20 AC 48 ms
64,128 KB
testcase_21 AC 45 ms
62,976 KB
testcase_22 AC 54 ms
73,984 KB
testcase_23 AC 52 ms
67,712 KB
testcase_24 AC 51 ms
67,584 KB
testcase_25 AC 79 ms
84,384 KB
testcase_26 AC 55 ms
70,016 KB
testcase_27 AC 48 ms
63,488 KB
testcase_28 AC 199 ms
176,896 KB
testcase_29 AC 119 ms
113,052 KB
testcase_30 AC 176 ms
141,196 KB
testcase_31 AC 68 ms
86,528 KB
testcase_32 AC 218 ms
142,912 KB
testcase_33 AC 180 ms
103,552 KB
testcase_34 AC 167 ms
155,392 KB
testcase_35 AC 194 ms
166,272 KB
testcase_36 AC 374 ms
175,616 KB
testcase_37 AC 157 ms
104,832 KB
testcase_38 AC 143 ms
94,464 KB
testcase_39 AC 266 ms
140,672 KB
testcase_40 AC 332 ms
173,264 KB
testcase_41 AC 243 ms
194,124 KB
testcase_42 AC 216 ms
127,232 KB
testcase_43 AC 197 ms
116,908 KB
testcase_44 AC 106 ms
97,664 KB
testcase_45 AC 197 ms
151,112 KB
testcase_46 AC 80 ms
83,200 KB
testcase_47 AC 756 ms
295,520 KB
testcase_48 AC 94 ms
83,256 KB
testcase_49 AC 83 ms
83,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())
l = []
MOD = 10**9+7
NUM = 300

for _ in range(M):
  p,q,c = map(int,input().split())
  p -= 1
  q -= 1
  l.append((p,q,c))

dp = [[[0 for _ in range(K+1)] for _ in range(NUM)] for _ in range(N)]

for i in range(NUM):
  dp[0][i][0] = 1
for i in range(N-1):
  for j in range(M):
    p,q,c = l[j]
    for k in range(K+1-c):
      dp[i+1][q][k+c] += dp[i][p][k]
      dp[i+1][q][k+c] %= MOD

ans = 0

for i in range(NUM):
  ans += dp[N-1][i][K]

print(ans%MOD)
0