結果

問題 No.1111 コード進行
ユーザー brthyyjpbrthyyjp
提出日時 2020-07-10 22:18:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,229 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 336,608 KB
最終ジャッジ日時 2024-10-11 09:35:16
合計ジャッジ時間 10,545 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,984 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 41 ms
52,336 KB
testcase_05 AC 46 ms
60,928 KB
testcase_06 AC 54 ms
66,432 KB
testcase_07 AC 55 ms
66,432 KB
testcase_08 AC 54 ms
64,512 KB
testcase_09 AC 51 ms
63,872 KB
testcase_10 AC 54 ms
68,224 KB
testcase_11 AC 51 ms
63,744 KB
testcase_12 AC 56 ms
66,048 KB
testcase_13 AC 52 ms
64,384 KB
testcase_14 AC 61 ms
69,248 KB
testcase_15 AC 53 ms
63,616 KB
testcase_16 AC 60 ms
67,968 KB
testcase_17 AC 52 ms
68,224 KB
testcase_18 AC 46 ms
60,672 KB
testcase_19 AC 46 ms
59,520 KB
testcase_20 AC 49 ms
62,208 KB
testcase_21 AC 52 ms
61,184 KB
testcase_22 AC 56 ms
70,656 KB
testcase_23 AC 58 ms
65,664 KB
testcase_24 AC 53 ms
65,792 KB
testcase_25 AC 64 ms
71,424 KB
testcase_26 AC 60 ms
66,944 KB
testcase_27 AC 48 ms
61,184 KB
testcase_28 AC 172 ms
182,136 KB
testcase_29 AC 109 ms
113,408 KB
testcase_30 AC 303 ms
172,160 KB
testcase_31 AC 57 ms
73,856 KB
testcase_32 AC 456 ms
182,136 KB
testcase_33 AC 429 ms
147,104 KB
testcase_34 AC 129 ms
136,832 KB
testcase_35 AC 176 ms
180,028 KB
testcase_36 AC 293 ms
181,888 KB
testcase_37 AC 138 ms
104,908 KB
testcase_38 AC 254 ms
119,680 KB
testcase_39 AC 706 ms
234,112 KB
testcase_40 AC 640 ms
271,996 KB
testcase_41 AC 193 ms
182,496 KB
testcase_42 AC 170 ms
113,280 KB
testcase_43 AC 422 ms
179,756 KB
testcase_44 AC 89 ms
91,008 KB
testcase_45 AC 160 ms
136,400 KB
testcase_46 AC 87 ms
83,272 KB
testcase_47 AC 1,229 ms
336,608 KB
testcase_48 AC 59 ms
70,528 KB
testcase_49 AC 60 ms
71,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
input = sys.stdin.buffer.readline

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

dp = [[[0]*(k+1) for i in range(300)] for j in range(n)]
for i in range(300):
    dp[0][i][0] += 1

for i in range(n-1):
    for p in range(300):
        for q, c in g[p]:
            for j in range(k+1):
                if j+c <= k:
                    dp[i+1][q][j+c] += dp[i][p][j]
ans = 0
for i in range(300):
    ans += dp[n-1][i][k]
ans %= mod
print(ans)
0