結果

問題 No.1111 コード進行
ユーザー AEnAEn
提出日時 2022-05-20 10:35:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 295,640 KB
最終ジャッジ日時 2024-09-19 17:57:41
合計ジャッジ時間 7,241 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,156 KB
testcase_01 AC 39 ms
59,996 KB
testcase_02 AC 35 ms
52,584 KB
testcase_03 AC 34 ms
52,668 KB
testcase_04 AC 35 ms
53,372 KB
testcase_05 AC 40 ms
62,528 KB
testcase_06 AC 51 ms
68,996 KB
testcase_07 AC 51 ms
67,564 KB
testcase_08 AC 44 ms
63,276 KB
testcase_09 AC 50 ms
66,192 KB
testcase_10 AC 46 ms
68,372 KB
testcase_11 AC 43 ms
62,996 KB
testcase_12 AC 55 ms
68,836 KB
testcase_13 AC 44 ms
63,364 KB
testcase_14 AC 59 ms
72,176 KB
testcase_15 AC 42 ms
62,196 KB
testcase_16 AC 54 ms
70,628 KB
testcase_17 AC 45 ms
67,892 KB
testcase_18 AC 40 ms
61,672 KB
testcase_19 AC 35 ms
54,416 KB
testcase_20 AC 41 ms
62,628 KB
testcase_21 AC 41 ms
61,004 KB
testcase_22 AC 48 ms
70,372 KB
testcase_23 AC 44 ms
64,040 KB
testcase_24 AC 47 ms
65,504 KB
testcase_25 AC 59 ms
73,556 KB
testcase_26 AC 59 ms
70,068 KB
testcase_27 AC 42 ms
62,616 KB
testcase_28 AC 230 ms
181,720 KB
testcase_29 AC 125 ms
113,100 KB
testcase_30 AC 213 ms
148,488 KB
testcase_31 AC 73 ms
88,284 KB
testcase_32 AC 251 ms
143,448 KB
testcase_33 AC 218 ms
112,840 KB
testcase_34 AC 189 ms
155,240 KB
testcase_35 AC 225 ms
179,664 KB
testcase_36 AC 241 ms
180,872 KB
testcase_37 AC 114 ms
105,120 KB
testcase_38 AC 152 ms
97,120 KB
testcase_39 AC 322 ms
147,164 KB
testcase_40 AC 390 ms
176,404 KB
testcase_41 AC 248 ms
182,032 KB
testcase_42 AC 136 ms
112,336 KB
testcase_43 AC 245 ms
119,980 KB
testcase_44 AC 82 ms
90,644 KB
testcase_45 AC 169 ms
136,312 KB
testcase_46 AC 59 ms
73,820 KB
testcase_47 AC 462 ms
295,640 KB
testcase_48 AC 57 ms
72,192 KB
testcase_49 AC 50 ms
69,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
code = [list() for _ in range(300)]
for i in range(M):
    p, q, c = map(int, input().split())
    code[p-1].append([q-1, c])

mod = 10**9+7
dp = [[[0]*(K+1) for _ in range(300)] for _ in range(N)]
for i in range(N-1):
    if i == 0:
        for j in range(300):
            for nex, c in code[j]:
                if c <= K:
                    dp[i+1][nex][c] += 1
    else:
        for j in range(300):
            for k in range(K+1):
                if dp[i][j][k] > 0:
                    for nex, c in code[j]:
                        if k+c <= K:
                            dp[i+1][nex][k+c] += dp[i][j][k]
                            dp[i+1][nex][k+c] %= mod
sm = 0
for i in range(300):
    sm += dp[-1][i][-1]
    sm %= mod
print(sm)
0