結果

問題 No.1111 コード進行
ユーザー tanon710tanon710
提出日時 2020-07-10 22:38:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 764 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 297,252 KB
最終ジャッジ日時 2024-10-11 10:00:21
合計ジャッジ時間 6,909 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,516 KB
testcase_01 AC 44 ms
58,152 KB
testcase_02 AC 41 ms
53,812 KB
testcase_03 AC 39 ms
52,588 KB
testcase_04 AC 38 ms
52,332 KB
testcase_05 AC 43 ms
62,352 KB
testcase_06 AC 50 ms
66,724 KB
testcase_07 AC 53 ms
67,936 KB
testcase_08 AC 51 ms
65,264 KB
testcase_09 AC 51 ms
65,732 KB
testcase_10 AC 54 ms
69,784 KB
testcase_11 AC 49 ms
64,116 KB
testcase_12 AC 54 ms
68,184 KB
testcase_13 AC 48 ms
65,196 KB
testcase_14 AC 61 ms
72,496 KB
testcase_15 AC 48 ms
63,584 KB
testcase_16 AC 55 ms
68,308 KB
testcase_17 AC 47 ms
68,752 KB
testcase_18 AC 42 ms
59,728 KB
testcase_19 AC 39 ms
55,036 KB
testcase_20 AC 46 ms
63,048 KB
testcase_21 AC 43 ms
60,292 KB
testcase_22 AC 51 ms
70,680 KB
testcase_23 AC 50 ms
65,928 KB
testcase_24 AC 49 ms
65,580 KB
testcase_25 AC 64 ms
74,160 KB
testcase_26 AC 58 ms
67,932 KB
testcase_27 AC 50 ms
63,872 KB
testcase_28 AC 172 ms
181,884 KB
testcase_29 AC 109 ms
113,452 KB
testcase_30 AC 155 ms
136,844 KB
testcase_31 AC 52 ms
74,188 KB
testcase_32 AC 191 ms
135,792 KB
testcase_33 AC 180 ms
113,808 KB
testcase_34 AC 147 ms
156,244 KB
testcase_35 AC 181 ms
180,512 KB
testcase_36 AC 357 ms
181,732 KB
testcase_37 AC 131 ms
90,184 KB
testcase_38 AC 143 ms
90,680 KB
testcase_39 AC 255 ms
136,576 KB
testcase_40 AC 293 ms
159,448 KB
testcase_41 AC 197 ms
182,476 KB
testcase_42 AC 188 ms
113,132 KB
testcase_43 AC 188 ms
113,624 KB
testcase_44 AC 92 ms
91,032 KB
testcase_45 AC 170 ms
136,548 KB
testcase_46 AC 58 ms
72,420 KB
testcase_47 AC 764 ms
297,252 KB
testcase_48 AC 62 ms
71,472 KB
testcase_49 AC 61 ms
72,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
input=sys.stdin.readline

mod=10**9+7
N,M,K=map(int,input().split())
edges=[[] for _ in range(301)]
s=set()
for _ in range(M):
    p,q,c=map(int,input().split())
    edges[p].append((q,c))
    s.add(p)
dp=[[[0]*(K+1) for _ in range(301)] for _ in range(N+1)]
for i in range(301):
    if i not in s:
        dp[1][i][0]=0
    else:
        dp[1][i][0]=1
for i in range(1,N):
    for j in s:
        for q,c in edges[j]:
            for k in range(K-c,-1,-1):
                dp[i+1][q][k+c]+=dp[i][j][k]
                dp[i+1][q][k+c]%=mod
ans=0
for i in range(301):
    ans+=dp[N][i][K]
    ans%=mod
print(ans)
0