結果

問題 No.1111 コード進行
ユーザー tamatotamato
提出日時 2020-07-10 21:38:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-10-11 08:24:17
合計ジャッジ時間 5,783 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 43 ms
52,096 KB
testcase_04 AC 44 ms
52,224 KB
testcase_05 AC 53 ms
61,056 KB
testcase_06 AC 63 ms
65,408 KB
testcase_07 AC 65 ms
65,408 KB
testcase_08 AC 59 ms
63,744 KB
testcase_09 AC 58 ms
63,232 KB
testcase_10 AC 62 ms
67,456 KB
testcase_11 AC 56 ms
62,592 KB
testcase_12 AC 63 ms
65,920 KB
testcase_13 AC 58 ms
64,000 KB
testcase_14 AC 68 ms
68,992 KB
testcase_15 AC 56 ms
62,592 KB
testcase_16 AC 65 ms
66,304 KB
testcase_17 AC 63 ms
68,480 KB
testcase_18 AC 52 ms
59,776 KB
testcase_19 AC 49 ms
58,240 KB
testcase_20 AC 55 ms
61,440 KB
testcase_21 AC 57 ms
61,568 KB
testcase_22 AC 64 ms
70,144 KB
testcase_23 AC 58 ms
64,128 KB
testcase_24 AC 59 ms
65,024 KB
testcase_25 AC 72 ms
70,784 KB
testcase_26 AC 62 ms
66,176 KB
testcase_27 AC 55 ms
61,568 KB
testcase_28 AC 96 ms
81,280 KB
testcase_29 AC 82 ms
76,544 KB
testcase_30 AC 102 ms
79,104 KB
testcase_31 AC 66 ms
72,960 KB
testcase_32 AC 147 ms
77,696 KB
testcase_33 AC 120 ms
77,824 KB
testcase_34 AC 87 ms
78,336 KB
testcase_35 AC 98 ms
80,640 KB
testcase_36 AC 179 ms
81,408 KB
testcase_37 AC 99 ms
75,904 KB
testcase_38 AC 125 ms
76,416 KB
testcase_39 AC 148 ms
79,232 KB
testcase_40 AC 158 ms
79,872 KB
testcase_41 AC 108 ms
81,792 KB
testcase_42 AC 118 ms
76,800 KB
testcase_43 AC 119 ms
77,184 KB
testcase_44 AC 81 ms
76,032 KB
testcase_45 AC 105 ms
78,208 KB
testcase_46 AC 78 ms
76,416 KB
testcase_47 AC 337 ms
91,776 KB
testcase_48 AC 79 ms
76,032 KB
testcase_49 AC 81 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N, M, K = map(int, input().split())
    dp = [[0] * (K+1) for _ in range(301)]
    for p in range(1, 301):
        dp[p][0] = 1
    code = []
    for _ in range(M):
        code.append(tuple(map(int, input().split())))
    for _ in range(N-1):
        dp_new = [[0] * (K+1) for _ in range(301)]
        for p, q, c in code:
            for k in range(K+1):
                if k + c <= K:
                    dp_new[q][k+c] = (dp_new[q][k+c] + dp[p][k])%mod
        dp = dp_new
    ans = 0
    for q in range(1, 301):
        ans = (ans + dp[q][K])%mod
    print(ans)


if __name__ == '__main__':
    main()
0