結果

問題 No.1111 コード進行
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-08 13:38:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 91,004 KB
最終ジャッジ日時 2024-07-23 13:13:33
合計ジャッジ時間 5,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,136 KB
testcase_01 AC 38 ms
53,624 KB
testcase_02 AC 39 ms
52,488 KB
testcase_03 AC 39 ms
52,652 KB
testcase_04 AC 38 ms
52,792 KB
testcase_05 AC 43 ms
61,160 KB
testcase_06 AC 53 ms
67,344 KB
testcase_07 AC 55 ms
67,480 KB
testcase_08 AC 54 ms
65,588 KB
testcase_09 AC 52 ms
66,072 KB
testcase_10 AC 56 ms
70,120 KB
testcase_11 AC 51 ms
64,984 KB
testcase_12 AC 57 ms
68,828 KB
testcase_13 AC 48 ms
64,128 KB
testcase_14 AC 63 ms
72,028 KB
testcase_15 AC 48 ms
62,256 KB
testcase_16 AC 56 ms
68,828 KB
testcase_17 AC 49 ms
67,816 KB
testcase_18 AC 44 ms
60,820 KB
testcase_19 AC 42 ms
59,228 KB
testcase_20 AC 46 ms
62,148 KB
testcase_21 AC 50 ms
62,648 KB
testcase_22 AC 50 ms
69,708 KB
testcase_23 AC 50 ms
66,124 KB
testcase_24 AC 49 ms
65,084 KB
testcase_25 AC 64 ms
72,696 KB
testcase_26 AC 60 ms
69,064 KB
testcase_27 AC 48 ms
61,624 KB
testcase_28 AC 81 ms
82,160 KB
testcase_29 AC 66 ms
77,216 KB
testcase_30 AC 115 ms
80,248 KB
testcase_31 AC 56 ms
74,164 KB
testcase_32 AC 157 ms
77,964 KB
testcase_33 AC 174 ms
78,708 KB
testcase_34 AC 75 ms
78,992 KB
testcase_35 AC 77 ms
79,636 KB
testcase_36 AC 129 ms
82,500 KB
testcase_37 AC 80 ms
76,472 KB
testcase_38 AC 108 ms
76,720 KB
testcase_39 AC 231 ms
80,516 KB
testcase_40 AC 205 ms
81,268 KB
testcase_41 AC 85 ms
81,932 KB
testcase_42 AC 95 ms
77,352 KB
testcase_43 AC 164 ms
77,504 KB
testcase_44 AC 64 ms
76,776 KB
testcase_45 AC 80 ms
78,324 KB
testcase_46 AC 60 ms
72,252 KB
testcase_47 AC 220 ms
91,004 KB
testcase_48 AC 61 ms
71,628 KB
testcase_49 AC 56 ms
71,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
PQC = [list(map(int,input().split())) for i in range(m)]
mod = 10**9+7
s = 300
dp = [[0]*(k+1) for i in range(s)]
for i in range(s):
    dp[i][0] = 1

for i in range(n-1):
    ndp = [[0]*(k+1) for i in range(s)]
    for p,q,c in PQC:
        p,q = p-1,q-1
        for j in range(k+1):
            if dp[p][j] == 0:
                continue
            if j+c <= k:
                ndp[q][j+c] += dp[p][j]
                ndp[q][j+c] %= mod
    dp = ndp

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