結果

問題 No.1111 コード進行
ユーザー hir355hir355
提出日時 2020-07-10 21:42:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,191 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 322,176 KB
最終ジャッジ日時 2024-10-11 08:32:56
合計ジャッジ時間 12,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,856 KB
testcase_01 AC 43 ms
57,728 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 52 ms
62,336 KB
testcase_06 AC 69 ms
68,736 KB
testcase_07 AC 67 ms
67,712 KB
testcase_08 AC 59 ms
64,640 KB
testcase_09 AC 62 ms
64,896 KB
testcase_10 AC 65 ms
69,248 KB
testcase_11 AC 58 ms
63,232 KB
testcase_12 AC 72 ms
68,736 KB
testcase_13 AC 62 ms
66,560 KB
testcase_14 AC 82 ms
71,680 KB
testcase_15 AC 56 ms
63,616 KB
testcase_16 AC 93 ms
80,640 KB
testcase_17 AC 64 ms
69,376 KB
testcase_18 AC 52 ms
61,952 KB
testcase_19 AC 50 ms
60,544 KB
testcase_20 AC 56 ms
64,000 KB
testcase_21 AC 50 ms
60,032 KB
testcase_22 AC 72 ms
73,216 KB
testcase_23 AC 68 ms
68,992 KB
testcase_24 AC 62 ms
66,560 KB
testcase_25 AC 91 ms
74,496 KB
testcase_26 AC 73 ms
69,120 KB
testcase_27 AC 58 ms
63,232 KB
testcase_28 AC 228 ms
183,040 KB
testcase_29 AC 143 ms
114,176 KB
testcase_30 AC 630 ms
220,544 KB
testcase_31 AC 83 ms
87,936 KB
testcase_32 AC 659 ms
232,256 KB
testcase_33 AC 605 ms
169,088 KB
testcase_34 AC 186 ms
154,240 KB
testcase_35 AC 230 ms
159,616 KB
testcase_36 AC 525 ms
184,192 KB
testcase_37 AC 174 ms
101,888 KB
testcase_38 AC 317 ms
122,496 KB
testcase_39 AC 1,115 ms
270,976 KB
testcase_40 AC 1,191 ms
322,176 KB
testcase_41 AC 310 ms
197,248 KB
testcase_42 AC 288 ms
124,416 KB
testcase_43 AC 724 ms
192,000 KB
testcase_44 AC 108 ms
91,392 KB
testcase_45 AC 262 ms
148,864 KB
testcase_46 AC 74 ms
77,184 KB
testcase_47 AC 1,055 ms
298,240 KB
testcase_48 AC 60 ms
63,232 KB
testcase_49 AC 61 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
n, m, k = map(int, input().split())
t = [[] for _ in range(300)]
for _ in range(m):
    p, q, c = map(int, input().split())
    t[p - 1].append((q - 1, c))
dp = [[[0] * (300) for _ in range(k + 1)] for _ in range(n)]
for i in range(300):
    dp[0][0][i] = 1
for i in range(n - 1):
    for j in range(k + 1):
        for a in range(300):
            for b, c in t[a]:
                if j + c <= k:
                    dp[i + 1][j + c][b] += dp[i][j][a]
print(sum(dp[n - 1][k]) % MOD)
0