結果

問題 No.1111 コード進行
ユーザー ttrttr
提出日時 2020-08-05 20:01:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 561 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 97,600 KB
最終ジャッジ日時 2024-09-17 10:17:47
合計ジャッジ時間 5,440 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,292 KB
testcase_01 AC 34 ms
52,512 KB
testcase_02 AC 35 ms
51,812 KB
testcase_03 AC 34 ms
53,372 KB
testcase_04 AC 33 ms
52,524 KB
testcase_05 AC 33 ms
55,416 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 55 ms
70,780 KB
testcase_27 AC 44 ms
62,276 KB
testcase_28 AC 79 ms
84,972 KB
testcase_29 AC 67 ms
77,340 KB
testcase_30 AC 96 ms
81,528 KB
testcase_31 AC 54 ms
77,024 KB
testcase_32 AC 140 ms
78,292 KB
testcase_33 AC 147 ms
78,728 KB
testcase_34 AC 70 ms
81,772 KB
testcase_35 AC 75 ms
81,664 KB
testcase_36 AC 243 ms
84,988 KB
testcase_37 AC 104 ms
77,008 KB
testcase_38 AC 96 ms
76,572 KB
testcase_39 AC 192 ms
81,628 KB
testcase_40 AC 198 ms
83,716 KB
testcase_41 AC 92 ms
84,456 KB
testcase_42 AC 136 ms
76,944 KB
testcase_43 AC 140 ms
78,384 KB
testcase_44 AC 71 ms
76,544 KB
testcase_45 AC 101 ms
79,696 KB
testcase_46 AC 52 ms
71,092 KB
testcase_47 AC 528 ms
97,600 KB
testcase_48 AC 52 ms
71,692 KB
testcase_49 RE -
権限があれば一括ダウンロードができます

ソースコード

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:
    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-3)%2][i][K]
    ans %= mod
print(ans)
0