結果

問題 No.1111 コード進行
ユーザー rlangevinrlangevin
提出日時 2023-02-10 12:41:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 745 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 257,408 KB
最終ジャッジ日時 2024-07-07 08:49:14
合計ジャッジ時間 9,269 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,464 KB
testcase_01 AC 49 ms
61,568 KB
testcase_02 AC 43 ms
54,016 KB
testcase_03 AC 40 ms
53,760 KB
testcase_04 AC 40 ms
53,504 KB
testcase_05 AC 65 ms
71,168 KB
testcase_06 AC 91 ms
82,176 KB
testcase_07 AC 88 ms
85,348 KB
testcase_08 AC 83 ms
84,480 KB
testcase_09 AC 81 ms
79,040 KB
testcase_10 AC 89 ms
88,952 KB
testcase_11 AC 76 ms
81,664 KB
testcase_12 AC 86 ms
81,640 KB
testcase_13 AC 92 ms
81,708 KB
testcase_14 AC 114 ms
84,992 KB
testcase_15 AC 83 ms
86,912 KB
testcase_16 AC 96 ms
82,816 KB
testcase_17 AC 85 ms
85,712 KB
testcase_18 AC 68 ms
77,440 KB
testcase_19 AC 53 ms
65,304 KB
testcase_20 AC 78 ms
78,976 KB
testcase_21 AC 62 ms
76,416 KB
testcase_22 AC 94 ms
88,272 KB
testcase_23 AC 82 ms
83,772 KB
testcase_24 AC 81 ms
82,276 KB
testcase_25 AC 106 ms
89,192 KB
testcase_26 AC 89 ms
86,744 KB
testcase_27 AC 75 ms
78,592 KB
testcase_28 AC 218 ms
173,280 KB
testcase_29 AC 193 ms
198,624 KB
testcase_30 AC 189 ms
161,224 KB
testcase_31 AC 86 ms
92,416 KB
testcase_32 AC 271 ms
239,840 KB
testcase_33 AC 215 ms
93,712 KB
testcase_34 AC 175 ms
182,912 KB
testcase_35 AC 258 ms
257,408 KB
testcase_36 AC 402 ms
105,092 KB
testcase_37 AC 225 ms
117,024 KB
testcase_38 AC 201 ms
148,864 KB
testcase_39 AC 254 ms
142,080 KB
testcase_40 AC 329 ms
118,900 KB
testcase_41 AC 265 ms
207,592 KB
testcase_42 AC 266 ms
122,496 KB
testcase_43 AC 241 ms
99,440 KB
testcase_44 AC 161 ms
150,656 KB
testcase_45 AC 256 ms
145,132 KB
testcase_46 AC 241 ms
224,384 KB
testcase_47 AC 745 ms
125,780 KB
testcase_48 AC 235 ms
256,128 KB
testcase_49 AC 236 ms
256,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(p, c):
    return p * (K + 2) + c

N, M, K = map(int, input().split())
mod = 10 ** 9 + 7
G = [[] for i in range(305)]
for i in range(M):
    P, Q, C = map(int, input().split())
    P, Q = P - 1, Q - 1
    G[P].append((Q, C))

pre = [0] * (305 * 305)
for i in range(301):
    pre[f(i, 0)] = 1

for i in range(N - 1):
    dp = [0] * (305 * 305)
    for j in range(301):
        for c in range(K + 2):
            for u, C in G[j]:
                dp[f(u, min(K + 1, c + C))] += pre[f(j, c)]
                dp[f(u, min(K + 1, c + C))] %= mod
    dp, pre = pre, dp

ans = 0
for i in range(301):
    ans += pre[f(i, K)]
    ans %= mod
print(ans)
0