結果

問題 No.1111 コード進行
ユーザー stngstng
提出日時 2022-05-22 13:30:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,272 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 297,620 KB
最終ジャッジ日時 2024-09-20 12:31:56
合計ジャッジ時間 10,248 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,972 KB
testcase_01 AC 44 ms
58,128 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 52 ms
64,256 KB
testcase_06 AC 70 ms
69,888 KB
testcase_07 AC 67 ms
68,480 KB
testcase_08 AC 60 ms
65,152 KB
testcase_09 AC 65 ms
67,072 KB
testcase_10 AC 65 ms
69,888 KB
testcase_11 AC 60 ms
67,876 KB
testcase_12 AC 73 ms
70,016 KB
testcase_13 AC 60 ms
67,456 KB
testcase_14 AC 84 ms
73,216 KB
testcase_15 AC 57 ms
63,744 KB
testcase_16 AC 77 ms
71,680 KB
testcase_17 AC 61 ms
70,400 KB
testcase_18 AC 51 ms
62,428 KB
testcase_19 AC 49 ms
61,312 KB
testcase_20 AC 55 ms
65,024 KB
testcase_21 AC 49 ms
60,672 KB
testcase_22 AC 69 ms
74,112 KB
testcase_23 AC 66 ms
69,888 KB
testcase_24 AC 60 ms
67,712 KB
testcase_25 AC 101 ms
84,480 KB
testcase_26 AC 71 ms
70,400 KB
testcase_27 AC 57 ms
64,640 KB
testcase_28 AC 232 ms
182,784 KB
testcase_29 AC 149 ms
114,432 KB
testcase_30 AC 245 ms
148,640 KB
testcase_31 AC 83 ms
88,420 KB
testcase_32 AC 269 ms
136,332 KB
testcase_33 AC 258 ms
113,664 KB
testcase_34 AC 183 ms
154,752 KB
testcase_35 AC 221 ms
159,388 KB
testcase_36 AC 665 ms
184,960 KB
testcase_37 AC 223 ms
101,888 KB
testcase_38 AC 168 ms
95,112 KB
testcase_39 AC 403 ms
147,840 KB
testcase_40 AC 497 ms
175,280 KB
testcase_41 AC 337 ms
198,016 KB
testcase_42 AC 302 ms
124,924 KB
testcase_43 AC 320 ms
118,764 KB
testcase_44 AC 137 ms
91,356 KB
testcase_45 AC 269 ms
149,504 KB
testcase_46 AC 62 ms
67,072 KB
testcase_47 AC 1,272 ms
297,620 KB
testcase_48 AC 57 ms
62,976 KB
testcase_49 AC 60 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,K = map(int,input().split())
mod = 10**9+7
pqlen = 301

pqc = [[] for i in range(pqlen)]
for i in range(m):
    p,q,c = map(int,input().split())
    p -= 1
    q -= 1
    pqc[p].append([q,c])

dp = [[[0]*pqlen for i in range(K+1)] for j in range(n+1)]

for i in range(pqlen):
    dp[0][0][i] = 1

for i in range(n-1):
    for j in range(K+1):
        for k in range(pqlen):
            for l in pqc[k]:
                p,c = l
                if j+c <= K:
                    dp[i+1][j+c][p] += dp[i][j][k]
                    dp[i+1][j+c][p] %= mod
#print(dp)
print((sum(dp[n-1][K]))%mod)
0