結果

問題 No.1111 コード進行
ユーザー ttrttr
提出日時 2020-08-05 20:09:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 600 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 97,808 KB
最終ジャッジ日時 2024-09-17 10:29:11
合計ジャッジ時間 6,134 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,188 KB
testcase_01 AC 38 ms
52,928 KB
testcase_02 AC 37 ms
52,612 KB
testcase_03 AC 37 ms
53,024 KB
testcase_04 AC 38 ms
53,412 KB
testcase_05 AC 39 ms
54,976 KB
testcase_06 AC 58 ms
69,568 KB
testcase_07 AC 58 ms
70,024 KB
testcase_08 AC 56 ms
67,272 KB
testcase_09 AC 55 ms
67,404 KB
testcase_10 AC 57 ms
70,724 KB
testcase_11 AC 55 ms
66,924 KB
testcase_12 AC 63 ms
70,556 KB
testcase_13 AC 55 ms
68,108 KB
testcase_14 AC 68 ms
72,920 KB
testcase_15 AC 51 ms
64,488 KB
testcase_16 AC 63 ms
71,256 KB
testcase_17 AC 54 ms
70,928 KB
testcase_18 AC 43 ms
60,316 KB
testcase_19 AC 38 ms
54,368 KB
testcase_20 AC 50 ms
65,604 KB
testcase_21 AC 48 ms
62,460 KB
testcase_22 AC 55 ms
74,024 KB
testcase_23 AC 55 ms
68,644 KB
testcase_24 AC 55 ms
68,308 KB
testcase_25 AC 68 ms
74,316 KB
testcase_26 AC 63 ms
70,024 KB
testcase_27 AC 48 ms
62,440 KB
testcase_28 AC 87 ms
84,964 KB
testcase_29 AC 75 ms
77,060 KB
testcase_30 AC 112 ms
81,128 KB
testcase_31 AC 60 ms
76,948 KB
testcase_32 AC 155 ms
78,504 KB
testcase_33 AC 158 ms
79,044 KB
testcase_34 AC 79 ms
81,696 KB
testcase_35 AC 84 ms
81,164 KB
testcase_36 AC 270 ms
84,796 KB
testcase_37 AC 119 ms
77,092 KB
testcase_38 AC 109 ms
76,556 KB
testcase_39 AC 214 ms
81,440 KB
testcase_40 AC 224 ms
83,112 KB
testcase_41 AC 107 ms
84,904 KB
testcase_42 AC 156 ms
77,332 KB
testcase_43 AC 160 ms
78,584 KB
testcase_44 AC 80 ms
76,424 KB
testcase_45 AC 117 ms
79,568 KB
testcase_46 AC 60 ms
71,980 KB
testcase_47 AC 600 ms
97,808 KB
testcase_48 AC 58 ms
72,116 KB
testcase_49 AC 60 ms
73,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int, input().split())
L = [[int(l) for l in input().split()] for _ in range(M)]
mod = 10**9+7

num = 301
dp = [[[0]*(K+1) for _ in range(num)] for _ in range(2)]

for l in L:
    if l[2] > K:
        continue
    dp[1][l[1]][l[2]] += 1
for i in range(N-2):
    dp[i%2] = [[0]*(K+1) for _ in range(num)]
    for l in L:
        for k in range(K+1):
            if k+l[2] > K:
                continue
            dp[i%2][l[1]][k+l[2]] += dp[(i+1)%2][l[0]][k]
            dp[i%2][l[1]][k+l[2]] %= mod

ans = 0
for i in range(num):
    ans += dp[(N-1)%2][i][K]
    ans %= mod
print(ans)
0