結果

問題 No.1111 コード進行
ユーザー 37zigen37zigen
提出日時 2020-07-10 22:39:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,017 ms / 2,000 ms
コード長 903 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 196,240 KB
最終ジャッジ日時 2024-10-11 10:01:06
合計ジャッジ時間 9,632 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,040 KB
testcase_01 AC 39 ms
53,140 KB
testcase_02 AC 40 ms
52,676 KB
testcase_03 AC 39 ms
52,684 KB
testcase_04 AC 39 ms
53,312 KB
testcase_05 AC 46 ms
63,272 KB
testcase_06 AC 71 ms
74,388 KB
testcase_07 AC 71 ms
73,024 KB
testcase_08 AC 68 ms
72,008 KB
testcase_09 AC 63 ms
69,476 KB
testcase_10 AC 74 ms
78,216 KB
testcase_11 AC 63 ms
68,948 KB
testcase_12 AC 77 ms
75,212 KB
testcase_13 AC 64 ms
71,396 KB
testcase_14 AC 87 ms
78,568 KB
testcase_15 AC 57 ms
66,452 KB
testcase_16 AC 81 ms
78,732 KB
testcase_17 AC 62 ms
73,524 KB
testcase_18 AC 47 ms
62,232 KB
testcase_19 AC 42 ms
59,900 KB
testcase_20 AC 56 ms
68,236 KB
testcase_21 AC 48 ms
61,104 KB
testcase_22 AC 74 ms
78,356 KB
testcase_23 AC 68 ms
71,496 KB
testcase_24 AC 72 ms
73,892 KB
testcase_25 AC 87 ms
78,224 KB
testcase_26 AC 87 ms
77,748 KB
testcase_27 AC 54 ms
66,008 KB
testcase_28 AC 97 ms
86,140 KB
testcase_29 AC 85 ms
78,244 KB
testcase_30 AC 367 ms
102,572 KB
testcase_31 AC 71 ms
78,612 KB
testcase_32 AC 645 ms
114,244 KB
testcase_33 AC 657 ms
131,748 KB
testcase_34 AC 112 ms
83,216 KB
testcase_35 AC 95 ms
81,888 KB
testcase_36 AC 297 ms
86,204 KB
testcase_37 AC 132 ms
77,176 KB
testcase_38 AC 262 ms
81,560 KB
testcase_39 AC 1,017 ms
196,240 KB
testcase_40 AC 574 ms
110,748 KB
testcase_41 AC 119 ms
87,168 KB
testcase_42 AC 170 ms
78,924 KB
testcase_43 AC 416 ms
97,952 KB
testcase_44 AC 91 ms
77,128 KB
testcase_45 AC 129 ms
81,612 KB
testcase_46 AC 73 ms
76,152 KB
testcase_47 AC 636 ms
99,140 KB
testcase_48 AC 69 ms
76,000 KB
testcase_49 AC 65 ms
73,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=10**9+7

n=300

N,M,K=map(int,input().split())
P=[0]*M
Q=[0]*M
C=[0]*M

for i in range(M):
    P[i],Q[i],C[i]=map(int,input().split())
    P[i]-=1
    Q[i]-=1

dp0=[[0]*(K+1) for i in range(n)]
dp1=[[0]*(K+1) for i in range(n)]

for i in range(n):
    dp0[i][0]=1

for t in range(N-1):
    for i in range(M):
        for num in range(K+1):
            nnum=num+C[i]
            if nnum>K:
                continue
            if t%2==0:
                dp1[Q[i]][nnum]+=dp0[P[i]][num]
                if dp1[Q[i]][num]>=MOD:
                    dp1[Q[i]][nnum]-=MOD
            else:
                dp0[Q[i]][nnum]+=dp1[P[i]][num]
                if dp0[Q[i]][nnum]>=MOD:
                    dp0[Q[i]][nnum]-=MOD

    if t%2==0:
        dp0=[[0]*(K+1) for i in range(n)]
    else:
        dp1=[[0]*(K+1) for i in range(n)]

ans=0
for i in range(n):
    ans=(ans+dp0[i][K]+dp1[i][K])%MOD
print(ans)
0