結果

問題 No.1111 コード進行
ユーザー ronpooronpoo
提出日時 2023-09-07 14:59:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 296,788 KB
最終ジャッジ日時 2024-06-25 08:50:23
合計ジャッジ時間 6,997 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,616 KB
testcase_01 AC 46 ms
59,444 KB
testcase_02 AC 37 ms
52,928 KB
testcase_03 AC 37 ms
52,924 KB
testcase_04 AC 39 ms
52,596 KB
testcase_05 AC 42 ms
62,324 KB
testcase_06 AC 53 ms
68,912 KB
testcase_07 AC 54 ms
68,760 KB
testcase_08 AC 49 ms
64,520 KB
testcase_09 AC 53 ms
66,684 KB
testcase_10 AC 46 ms
67,676 KB
testcase_11 AC 48 ms
64,064 KB
testcase_12 AC 59 ms
69,736 KB
testcase_13 AC 44 ms
63,460 KB
testcase_14 AC 63 ms
73,768 KB
testcase_15 AC 49 ms
63,556 KB
testcase_16 AC 59 ms
70,984 KB
testcase_17 AC 45 ms
67,356 KB
testcase_18 AC 45 ms
62,908 KB
testcase_19 AC 39 ms
53,568 KB
testcase_20 AC 45 ms
62,564 KB
testcase_21 AC 43 ms
60,024 KB
testcase_22 AC 50 ms
71,328 KB
testcase_23 AC 49 ms
65,260 KB
testcase_24 AC 49 ms
65,160 KB
testcase_25 AC 63 ms
74,712 KB
testcase_26 AC 62 ms
70,376 KB
testcase_27 AC 45 ms
61,200 KB
testcase_28 AC 168 ms
181,832 KB
testcase_29 AC 106 ms
113,516 KB
testcase_30 AC 189 ms
148,932 KB
testcase_31 AC 74 ms
88,156 KB
testcase_32 AC 229 ms
143,880 KB
testcase_33 AC 210 ms
112,800 KB
testcase_34 AC 149 ms
156,300 KB
testcase_35 AC 168 ms
180,528 KB
testcase_36 AC 230 ms
181,188 KB
testcase_37 AC 118 ms
105,148 KB
testcase_38 AC 161 ms
97,552 KB
testcase_39 AC 321 ms
147,944 KB
testcase_40 AC 377 ms
176,960 KB
testcase_41 AC 181 ms
182,308 KB
testcase_42 AC 158 ms
127,900 KB
testcase_43 AC 261 ms
120,156 KB
testcase_44 AC 82 ms
90,924 KB
testcase_45 AC 135 ms
136,036 KB
testcase_46 AC 62 ms
72,616 KB
testcase_47 AC 327 ms
296,788 KB
testcase_48 AC 63 ms
73,280 KB
testcase_49 AC 54 ms
72,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
PQC = [list(map(int, input().split())) for _ in range(M)]
MOD = 10**9 + 7

d = dict()
for i in range(M):
    p, q, c = PQC[i]
    p -= 1
    q -= 1
    if p not in d:
        d[p] = []
    d[p].append((q, c))

dp = [[[0]*(K+1) for _ in range(300)] for _ in range(N+1)]
for i in range(300):
    if i in d:
        dp[1][i][0] = 1
for i in range(1, N):
    for j in range(300):
        if j not in d:
            continue
        for k in range(K+1):
            if dp[i][j][k] == 0:
                continue
            for x, y in d[j]:
                if k+y <= K:
                    dp[i+1][x][k+y] += dp[i][j][k]
                    dp[i+1][x][k+y] %= MOD
                    
ans = 0
for i in range(300):
    ans += dp[N][i][K]
    ans %= MOD
print(ans)
0