結果

問題 No.1111 コード進行
ユーザー titiatitia
提出日時 2020-07-11 02:20:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 542 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,700 KB
最終ジャッジ日時 2024-10-12 00:12:59
合計ジャッジ時間 14,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,700 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 34 ms
12,032 KB
testcase_06 AC 98 ms
11,852 KB
testcase_07 AC 144 ms
11,136 KB
testcase_08 AC 154 ms
10,880 KB
testcase_09 AC 73 ms
11,808 KB
testcase_10 AC 86 ms
11,392 KB
testcase_11 AC 87 ms
11,008 KB
testcase_12 AC 141 ms
11,860 KB
testcase_13 AC 53 ms
11,392 KB
testcase_14 AC 240 ms
11,776 KB
testcase_15 AC 85 ms
10,624 KB
testcase_16 AC 155 ms
11,616 KB
testcase_17 AC 50 ms
11,264 KB
testcase_18 AC 37 ms
10,880 KB
testcase_19 AC 32 ms
11,264 KB
testcase_20 AC 41 ms
11,548 KB
testcase_21 AC 66 ms
10,752 KB
testcase_22 AC 66 ms
11,520 KB
testcase_23 AC 82 ms
11,136 KB
testcase_24 AC 57 ms
11,520 KB
testcase_25 AC 313 ms
11,528 KB
testcase_26 AC 217 ms
11,392 KB
testcase_27 AC 49 ms
11,136 KB
testcase_28 AC 168 ms
11,780 KB
testcase_29 AC 301 ms
11,008 KB
testcase_30 AC 1,069 ms
11,912 KB
testcase_31 AC 63 ms
11,668 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 145 ms
11,528 KB
testcase_35 AC 209 ms
11,392 KB
testcase_36 TLE -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
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=[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