結果

問題 No.1111 コード進行
ユーザー tanon710tanon710
提出日時 2020-07-10 22:39:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 296,256 KB
最終ジャッジ日時 2024-10-11 10:01:40
合計ジャッジ時間 6,799 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,588 KB
testcase_01 AC 38 ms
53,980 KB
testcase_02 AC 38 ms
52,272 KB
testcase_03 AC 38 ms
53,256 KB
testcase_04 AC 37 ms
52,816 KB
testcase_05 AC 40 ms
55,392 KB
testcase_06 AC 50 ms
65,636 KB
testcase_07 AC 55 ms
68,184 KB
testcase_08 AC 52 ms
65,344 KB
testcase_09 AC 48 ms
63,320 KB
testcase_10 AC 51 ms
68,364 KB
testcase_11 AC 49 ms
64,420 KB
testcase_12 AC 53 ms
67,300 KB
testcase_13 AC 49 ms
64,180 KB
testcase_14 AC 57 ms
70,340 KB
testcase_15 AC 49 ms
62,568 KB
testcase_16 AC 53 ms
68,072 KB
testcase_17 AC 48 ms
66,980 KB
testcase_18 AC 41 ms
61,268 KB
testcase_19 AC 38 ms
53,364 KB
testcase_20 AC 46 ms
63,572 KB
testcase_21 AC 43 ms
59,144 KB
testcase_22 AC 51 ms
69,732 KB
testcase_23 AC 50 ms
65,088 KB
testcase_24 AC 48 ms
64,888 KB
testcase_25 AC 64 ms
72,980 KB
testcase_26 AC 54 ms
66,932 KB
testcase_27 AC 47 ms
61,396 KB
testcase_28 AC 164 ms
182,264 KB
testcase_29 AC 101 ms
113,040 KB
testcase_30 AC 156 ms
136,856 KB
testcase_31 AC 52 ms
74,308 KB
testcase_32 AC 185 ms
135,552 KB
testcase_33 AC 178 ms
113,672 KB
testcase_34 AC 123 ms
136,784 KB
testcase_35 AC 172 ms
180,368 KB
testcase_36 AC 364 ms
181,804 KB
testcase_37 AC 129 ms
90,496 KB
testcase_38 AC 117 ms
90,884 KB
testcase_39 AC 246 ms
136,404 KB
testcase_40 AC 286 ms
159,264 KB
testcase_41 AC 191 ms
182,480 KB
testcase_42 AC 184 ms
112,784 KB
testcase_43 AC 189 ms
113,344 KB
testcase_44 AC 93 ms
91,224 KB
testcase_45 AC 162 ms
136,520 KB
testcase_46 AC 55 ms
70,040 KB
testcase_47 AC 757 ms
296,256 KB
testcase_48 AC 54 ms
70,328 KB
testcase_49 AC 55 ms
70,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
input=sys.stdin.readline

mod=10**9+7
N,M,K=map(int,input().split())
arr=[list(map(int,input().split())) for _ in range(M)]
dp=[[[0]*(K+1) for _ in range(301)] for _ in range(N)]
for i in range(301):
    dp[0][i][0]=1
for i in range(N-1):
    for j in range(M):
        p,q,c=arr[j]
        for k in range(K-c,-1,-1):
            dp[i+1][q][k+c]+=dp[i][p][k]
            dp[i+1][q][k+c]%=mod
ans=0
for i in range(301):
    ans+=dp[N-1][i][K]
    ans%=mod
print(ans)
0