結果

問題 No.1111 コード進行
ユーザー qibqib
提出日時 2023-02-13 01:38:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 98,568 KB
最終ジャッジ日時 2024-07-16 08:16:37
合計ジャッジ時間 6,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,472 KB
testcase_01 AC 39 ms
51,868 KB
testcase_02 AC 39 ms
53,308 KB
testcase_03 AC 40 ms
52,204 KB
testcase_04 AC 39 ms
53,164 KB
testcase_05 AC 39 ms
52,216 KB
testcase_06 AC 50 ms
61,476 KB
testcase_07 AC 56 ms
64,600 KB
testcase_08 AC 48 ms
61,164 KB
testcase_09 AC 51 ms
62,260 KB
testcase_10 AC 47 ms
59,436 KB
testcase_11 AC 47 ms
60,104 KB
testcase_12 AC 57 ms
63,700 KB
testcase_13 AC 45 ms
58,732 KB
testcase_14 AC 63 ms
66,900 KB
testcase_15 AC 45 ms
60,020 KB
testcase_16 AC 56 ms
63,068 KB
testcase_17 AC 43 ms
57,384 KB
testcase_18 AC 43 ms
57,196 KB
testcase_19 AC 41 ms
52,836 KB
testcase_20 AC 41 ms
52,412 KB
testcase_21 AC 45 ms
58,248 KB
testcase_22 AC 45 ms
59,432 KB
testcase_23 AC 47 ms
59,580 KB
testcase_24 AC 47 ms
59,524 KB
testcase_25 AC 65 ms
68,936 KB
testcase_26 AC 67 ms
70,372 KB
testcase_27 AC 43 ms
54,488 KB
testcase_28 AC 45 ms
60,272 KB
testcase_29 AC 52 ms
63,504 KB
testcase_30 AC 158 ms
76,328 KB
testcase_31 AC 53 ms
64,276 KB
testcase_32 AC 241 ms
76,592 KB
testcase_33 AC 292 ms
77,696 KB
testcase_34 AC 48 ms
61,868 KB
testcase_35 AC 47 ms
61,780 KB
testcase_36 AC 62 ms
67,784 KB
testcase_37 AC 62 ms
69,312 KB
testcase_38 AC 153 ms
77,048 KB
testcase_39 AC 444 ms
84,776 KB
testcase_40 AC 394 ms
98,568 KB
testcase_41 AC 47 ms
61,840 KB
testcase_42 AC 74 ms
75,660 KB
testcase_43 AC 297 ms
86,228 KB
testcase_44 AC 48 ms
61,660 KB
testcase_45 AC 50 ms
62,660 KB
testcase_46 AC 71 ms
73,592 KB
testcase_47 AC 70 ms
73,200 KB
testcase_48 AC 72 ms
76,252 KB
testcase_49 AC 55 ms
66,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

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

dp = [{ 0 : 1 } for _ in range(300)]
for _ in range(n - 1):
  ndp = [{} for _ in range(300)]
  for u, v, c in edges:
    for cur, cnt in dp[u].items():
      if cur + c <= k:
        ndp[v][cur + c] = (ndp[v].get(cur + c, 0) + cnt) % MOD

  dp = ndp

ans = 0
for v in range(300):
  ans = (ans + dp[v].get(k, 0)) % MOD

print(ans)
0