結果

問題 No.1111 コード進行
ユーザー titiatitia
提出日時 2020-07-11 02:20:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 91,520 KB
最終ジャッジ日時 2024-10-12 00:13:28
合計ジャッジ時間 6,345 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,368 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
52,460 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 44 ms
61,312 KB
testcase_06 AC 55 ms
67,456 KB
testcase_07 AC 57 ms
67,456 KB
testcase_08 AC 58 ms
66,304 KB
testcase_09 AC 54 ms
65,536 KB
testcase_10 AC 54 ms
69,632 KB
testcase_11 AC 54 ms
64,000 KB
testcase_12 AC 59 ms
68,224 KB
testcase_13 AC 58 ms
65,792 KB
testcase_14 AC 69 ms
71,296 KB
testcase_15 AC 50 ms
62,848 KB
testcase_16 AC 61 ms
68,864 KB
testcase_17 AC 54 ms
69,760 KB
testcase_18 AC 45 ms
60,544 KB
testcase_19 AC 42 ms
59,008 KB
testcase_20 AC 49 ms
63,616 KB
testcase_21 AC 46 ms
60,416 KB
testcase_22 AC 54 ms
71,936 KB
testcase_23 AC 54 ms
66,176 KB
testcase_24 AC 57 ms
66,688 KB
testcase_25 AC 66 ms
72,960 KB
testcase_26 AC 59 ms
67,840 KB
testcase_27 AC 53 ms
64,256 KB
testcase_28 AC 82 ms
82,416 KB
testcase_29 AC 76 ms
77,056 KB
testcase_30 AC 100 ms
80,512 KB
testcase_31 AC 60 ms
77,056 KB
testcase_32 AC 150 ms
77,952 KB
testcase_33 AC 142 ms
78,592 KB
testcase_34 AC 74 ms
79,104 KB
testcase_35 AC 87 ms
80,224 KB
testcase_36 AC 222 ms
82,048 KB
testcase_37 AC 128 ms
76,672 KB
testcase_38 AC 115 ms
76,288 KB
testcase_39 AC 163 ms
80,128 KB
testcase_40 AC 197 ms
81,488 KB
testcase_41 AC 104 ms
82,304 KB
testcase_42 AC 165 ms
77,824 KB
testcase_43 AC 173 ms
77,848 KB
testcase_44 AC 84 ms
76,952 KB
testcase_45 AC 114 ms
78,720 KB
testcase_46 AC 117 ms
76,212 KB
testcase_47 AC 366 ms
91,520 KB
testcase_48 AC 96 ms
76,032 KB
testcase_49 AC 107 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=10**9+7

N,M,K=map(int,input().split())

E=[tuple(map(int,input().split())) for i in range(M)]

DP=dict()
DP=[[0]*(K+1) for i in range(301)]
for i in range(1,301):
    DP[i][0]=1

for i in range(N-1):
    NDP=[[0]*(K+1) for i in range(301)]

    for fr,to,cost in E:
        for j in range(301):
            if j+cost<=K:
                NDP[to][j+cost]+=DP[fr][j]
                NDP[to][j+cost]%=mod

    DP=NDP
                    
ANS=0
for i in range(301):
    ANS=(ANS+DP[i][K])%mod
print(ANS)

    
0