結果

問題 No.1111 コード進行
ユーザー uni_pythonuni_python
提出日時 2020-07-11 16:04:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 978 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 924 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 295,280 KB
最終ジャッジ日時 2024-10-13 04:14:47
合計ジャッジ時間 7,775 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,620 KB
testcase_01 AC 38 ms
53,132 KB
testcase_02 AC 37 ms
53,028 KB
testcase_03 AC 38 ms
52,500 KB
testcase_04 AC 38 ms
54,156 KB
testcase_05 AC 39 ms
54,840 KB
testcase_06 AC 51 ms
66,048 KB
testcase_07 AC 56 ms
69,008 KB
testcase_08 AC 51 ms
64,428 KB
testcase_09 AC 49 ms
62,988 KB
testcase_10 AC 49 ms
67,504 KB
testcase_11 AC 49 ms
63,892 KB
testcase_12 AC 53 ms
66,908 KB
testcase_13 AC 47 ms
64,204 KB
testcase_14 AC 63 ms
69,864 KB
testcase_15 AC 47 ms
63,168 KB
testcase_16 AC 55 ms
67,244 KB
testcase_17 AC 48 ms
67,532 KB
testcase_18 AC 42 ms
59,364 KB
testcase_19 AC 38 ms
53,008 KB
testcase_20 AC 45 ms
61,168 KB
testcase_21 AC 42 ms
60,212 KB
testcase_22 AC 50 ms
70,128 KB
testcase_23 AC 49 ms
65,296 KB
testcase_24 AC 48 ms
64,556 KB
testcase_25 AC 65 ms
72,872 KB
testcase_26 AC 56 ms
65,888 KB
testcase_27 AC 45 ms
61,340 KB
testcase_28 AC 168 ms
181,340 KB
testcase_29 AC 105 ms
112,940 KB
testcase_30 AC 163 ms
136,456 KB
testcase_31 AC 51 ms
72,544 KB
testcase_32 AC 220 ms
135,424 KB
testcase_33 AC 215 ms
113,664 KB
testcase_34 AC 124 ms
136,728 KB
testcase_35 AC 175 ms
179,296 KB
testcase_36 AC 435 ms
181,528 KB
testcase_37 AC 150 ms
90,488 KB
testcase_38 AC 163 ms
96,744 KB
testcase_39 AC 307 ms
136,732 KB
testcase_40 AC 349 ms
158,932 KB
testcase_41 AC 200 ms
181,988 KB
testcase_42 AC 228 ms
113,100 KB
testcase_43 AC 226 ms
113,320 KB
testcase_44 AC 95 ms
91,200 KB
testcase_45 AC 181 ms
136,216 KB
testcase_46 AC 76 ms
83,192 KB
testcase_47 AC 978 ms
295,280 KB
testcase_48 AC 77 ms
82,572 KB
testcase_49 AC 76 ms
82,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N,M,K=MI()
    MM=300
    dp=[[[0]*(K+1) for _ in range(MM)]for _ in range(N)]
    #i個使った,j番目にいる,合計k
    
    for j in range(MM):
        dp[0][j][0]=1
    
    
    pqc=[]
    for i in range(M):
        p,q,c=MI()
        p-=1
        q-=1
        pqc.append((p,q,c))
        
    for i in range(N-1):
        for jj in range(M):
            fro=pqc[jj][0]
            to=pqc[jj][1]
            cost=pqc[jj][2]
            for k in range(K+1-cost):
                dp[i+1][to][k+cost]=(dp[i+1][to][k+cost] + dp[i][fro][k])%mod
                
    ans=0
    for j in range(MM):
        ans=(ans + dp[-1][j][-1])%mod
        
    print(ans)
        


main()
0