結果

問題 No.1111 コード進行
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-11 16:12:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 1,778 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-10-13 04:31:04
合計ジャッジ時間 7,158 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 45 ms
61,056 KB
testcase_06 AC 58 ms
68,480 KB
testcase_07 AC 59 ms
68,864 KB
testcase_08 AC 59 ms
66,944 KB
testcase_09 AC 56 ms
65,664 KB
testcase_10 AC 56 ms
70,400 KB
testcase_11 AC 55 ms
65,280 KB
testcase_12 AC 61 ms
69,376 KB
testcase_13 AC 57 ms
66,432 KB
testcase_14 AC 69 ms
73,984 KB
testcase_15 AC 55 ms
64,256 KB
testcase_16 AC 64 ms
70,656 KB
testcase_17 AC 55 ms
69,760 KB
testcase_18 AC 45 ms
60,800 KB
testcase_19 AC 45 ms
59,776 KB
testcase_20 AC 50 ms
63,616 KB
testcase_21 AC 47 ms
60,544 KB
testcase_22 AC 58 ms
72,576 KB
testcase_23 AC 57 ms
67,584 KB
testcase_24 AC 56 ms
67,584 KB
testcase_25 AC 73 ms
77,440 KB
testcase_26 AC 64 ms
70,016 KB
testcase_27 AC 53 ms
63,232 KB
testcase_28 AC 89 ms
83,072 KB
testcase_29 AC 76 ms
76,928 KB
testcase_30 AC 99 ms
80,384 KB
testcase_31 AC 64 ms
77,652 KB
testcase_32 AC 124 ms
78,296 KB
testcase_33 AC 129 ms
78,848 KB
testcase_34 AC 79 ms
80,640 KB
testcase_35 AC 84 ms
79,360 KB
testcase_36 AC 203 ms
82,688 KB
testcase_37 AC 104 ms
76,672 KB
testcase_38 AC 97 ms
76,544 KB
testcase_39 AC 158 ms
80,384 KB
testcase_40 AC 172 ms
81,792 KB
testcase_41 AC 101 ms
83,712 KB
testcase_42 AC 133 ms
77,824 KB
testcase_43 AC 130 ms
78,336 KB
testcase_44 AC 79 ms
76,672 KB
testcase_45 AC 98 ms
78,804 KB
testcase_46 AC 65 ms
74,240 KB
testcase_47 AC 361 ms
91,648 KB
testcase_48 AC 62 ms
72,960 KB
testcase_49 AC 64 ms
73,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
n,m,k=map(int,input().split())
code=[[] for _ in range(301)]
for _ in range(m):
    p,q,c=map(int,input().split())
    code[p].append((q,c))
dp=[[0]*(k+1) for _ in range(301)]
for i in range(1,301):
    dp[i][0]+=1

for i in range(1,n):
    newdp=[[0]*(k+1) for _ in range(301)]
    for s in range(1,301):
        for g, cx in code[s]:
            for ct in range(k+1):
                if ct+cx<=k:
                    newdp[g][ct+cx]+=dp[s][ct]
                    newdp[g][ct+cx]%=mod
    dp=newdp+[]

ans=0
for i in range(1,301):
    ans+=dp[i][k]
    ans%=mod
print(ans)
0