結果

問題 No.1111 コード進行
ユーザー 37zigen37zigen
提出日時 2020-07-10 22:37:41
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 928 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 10,996 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2023-08-01 18:41:00
合計ジャッジ時間 8,466 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
12,732 KB
testcase_01 AC 17 ms
8,224 KB
testcase_02 AC 18 ms
8,364 KB
testcase_03 AC 17 ms
8,208 KB
testcase_04 AC 17 ms
8,352 KB
testcase_05 AC 22 ms
10,464 KB
testcase_06 AC 96 ms
9,984 KB
testcase_07 AC 94 ms
9,024 KB
testcase_08 AC 48 ms
8,516 KB
testcase_09 AC 71 ms
9,808 KB
testcase_10 AC 67 ms
9,264 KB
testcase_11 AC 34 ms
8,640 KB
testcase_12 AC 140 ms
9,788 KB
testcase_13 AC 42 ms
9,412 KB
testcase_14 AC 285 ms
9,788 KB
testcase_15 AC 23 ms
8,560 KB
testcase_16 AC 172 ms
9,852 KB
testcase_17 AC 36 ms
9,268 KB
testcase_18 AC 20 ms
8,596 KB
testcase_19 AC 19 ms
9,452 KB
testcase_20 AC 29 ms
9,648 KB
testcase_21 AC 19 ms
8,356 KB
testcase_22 AC 56 ms
9,528 KB
testcase_23 AC 51 ms
9,064 KB
testcase_24 AC 45 ms
9,288 KB
testcase_25 AC 301 ms
9,644 KB
testcase_26 AC 210 ms
8,952 KB
testcase_27 AC 39 ms
9,220 KB
testcase_28 AC 167 ms
9,952 KB
testcase_29 AC 268 ms
9,000 KB
testcase_30 WA -
testcase_31 AC 54 ms
9,640 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
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 #

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+=dp0[i][K]+dp1[i][K]
    if ans>=MOD:
        ans-=MOD
print(ans)
0