結果

問題 No.1111 コード進行
ユーザー lloyzlloyz
提出日時 2022-04-22 00:26:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 544 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 295,936 KB
最終ジャッジ日時 2024-06-23 03:09:38
合計ジャッジ時間 8,164 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,872 KB
testcase_01 AC 42 ms
61,600 KB
testcase_02 AC 35 ms
53,760 KB
testcase_03 AC 34 ms
54,208 KB
testcase_04 AC 35 ms
54,776 KB
testcase_05 AC 45 ms
64,256 KB
testcase_06 AC 57 ms
70,300 KB
testcase_07 AC 62 ms
71,808 KB
testcase_08 AC 48 ms
67,116 KB
testcase_09 AC 55 ms
68,744 KB
testcase_10 AC 59 ms
72,380 KB
testcase_11 AC 45 ms
67,316 KB
testcase_12 AC 58 ms
71,936 KB
testcase_13 AC 54 ms
66,688 KB
testcase_14 AC 74 ms
83,224 KB
testcase_15 AC 50 ms
65,408 KB
testcase_16 AC 64 ms
73,940 KB
testcase_17 AC 54 ms
71,964 KB
testcase_18 AC 48 ms
64,896 KB
testcase_19 AC 45 ms
61,824 KB
testcase_20 AC 50 ms
65,360 KB
testcase_21 AC 44 ms
64,816 KB
testcase_22 AC 62 ms
74,180 KB
testcase_23 AC 53 ms
67,532 KB
testcase_24 AC 55 ms
68,292 KB
testcase_25 AC 83 ms
84,480 KB
testcase_26 AC 68 ms
74,028 KB
testcase_27 AC 49 ms
63,232 KB
testcase_28 AC 300 ms
177,116 KB
testcase_29 AC 166 ms
123,364 KB
testcase_30 AC 254 ms
148,592 KB
testcase_31 AC 83 ms
86,876 KB
testcase_32 AC 282 ms
143,232 KB
testcase_33 AC 255 ms
117,860 KB
testcase_34 AC 223 ms
155,776 KB
testcase_35 AC 288 ms
180,080 KB
testcase_36 AC 274 ms
175,888 KB
testcase_37 AC 130 ms
105,216 KB
testcase_38 AC 156 ms
97,420 KB
testcase_39 AC 355 ms
147,456 KB
testcase_40 AC 431 ms
176,420 KB
testcase_41 AC 300 ms
193,716 KB
testcase_42 AC 183 ms
127,516 KB
testcase_43 AC 285 ms
120,064 KB
testcase_44 AC 111 ms
97,280 KB
testcase_45 AC 214 ms
151,040 KB
testcase_46 AC 86 ms
83,220 KB
testcase_47 AC 544 ms
295,936 KB
testcase_48 AC 89 ms
83,420 KB
testcase_49 AC 84 ms
82,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
Edge = [[] for _ in range(300)]
for _ in range(m):
    p, q, c = map(int, input().split())
    p -= 1
    q -= 1
    Edge[p].append((q, c))
mod = 10**9 + 7

DP = [[[0 for _ in range(k + 1)] for _ in range(300)] for _ in range(n)]
for i in range(300):
    DP[0][i][0] = 1
for i in range(n - 1):
    for j in range(300):
        for c in range(k + 1):
            if DP[i][j][c] > 0:
                for nj, nc in Edge[j]:
                    if c + nc > k:
                        continue
                    DP[i + 1][nj][c + nc] += DP[i][j][c]
                    DP[i + 1][nj][c + nc] %= mod
ans = 0
for i in range(300):
    ans += DP[n - 1][i][k]
    ans %= mod
print(ans)
0