結果

問題 No.1111 コード進行
ユーザー titiatitia
提出日時 2020-07-11 00:56:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 669 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 137,216 KB
最終ジャッジ日時 2024-10-11 21:54:20
合計ジャッジ時間 11,026 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,344 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 46 ms
60,672 KB
testcase_07 AC 47 ms
61,440 KB
testcase_08 AC 39 ms
53,248 KB
testcase_09 AC 57 ms
64,000 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 40 ms
52,712 KB
testcase_12 AC 60 ms
67,328 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 85 ms
75,904 KB
testcase_15 AC 40 ms
52,608 KB
testcase_16 AC 49 ms
62,336 KB
testcase_17 AC 37 ms
52,352 KB
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 38 ms
51,840 KB
testcase_20 AC 38 ms
52,608 KB
testcase_21 AC 38 ms
52,352 KB
testcase_22 AC 39 ms
52,480 KB
testcase_23 AC 40 ms
52,224 KB
testcase_24 AC 46 ms
60,416 KB
testcase_25 AC 64 ms
70,016 KB
testcase_26 AC 147 ms
76,308 KB
testcase_27 AC 39 ms
53,064 KB
testcase_28 AC 38 ms
52,096 KB
testcase_29 AC 46 ms
60,800 KB
testcase_30 AC 762 ms
82,344 KB
testcase_31 AC 71 ms
73,088 KB
testcase_32 AC 1,413 ms
81,024 KB
testcase_33 AC 1,877 ms
95,064 KB
testcase_34 AC 47 ms
61,056 KB
testcase_35 AC 39 ms
52,352 KB
testcase_36 AC 51 ms
63,616 KB
testcase_37 AC 59 ms
66,304 KB
testcase_38 AC 705 ms
86,912 KB
testcase_39 TLE -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=10**9+7

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

E=[[] for i in range(301)]

for i in range(M):
    p,q,c=map(int,input().split())
    E[p].append((q,c))

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

for i in range(N-1):
    NDP=dict()

    for i,now in DP:
        for to,cost in E[i]:
            if now+cost<=K:
                if (to,now+cost) in NDP:
                    NDP[to,now+cost]+=DP[i,now]
                    NDP[to,now+cost]%=mod
                else:
                    NDP[to,now+cost]=DP[i,now]

    DP=NDP
                    
ANS=0
for i,c in DP:
    if c==K:
        ANS=(ANS+DP[i,c])%mod
print(ANS)

    
0