結果

問題 No.1111 コード進行
ユーザー tcltktcltk
提出日時 2021-01-17 15:21:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 670 ms / 2,000 ms
コード長 1,276 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-11-29 17:42:09
合計ジャッジ時間 14,161 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
89,344 KB
testcase_01 AC 144 ms
88,960 KB
testcase_02 AC 141 ms
88,704 KB
testcase_03 AC 143 ms
88,704 KB
testcase_04 AC 143 ms
88,704 KB
testcase_05 AC 147 ms
89,344 KB
testcase_06 AC 159 ms
89,216 KB
testcase_07 AC 165 ms
89,088 KB
testcase_08 AC 177 ms
89,600 KB
testcase_09 AC 156 ms
89,608 KB
testcase_10 AC 165 ms
89,472 KB
testcase_11 AC 161 ms
89,548 KB
testcase_12 AC 163 ms
89,600 KB
testcase_13 AC 154 ms
89,472 KB
testcase_14 AC 171 ms
89,344 KB
testcase_15 AC 163 ms
89,600 KB
testcase_16 AC 163 ms
89,472 KB
testcase_17 AC 158 ms
89,472 KB
testcase_18 AC 157 ms
89,472 KB
testcase_19 AC 144 ms
89,216 KB
testcase_20 AC 149 ms
88,960 KB
testcase_21 AC 158 ms
89,728 KB
testcase_22 AC 158 ms
89,088 KB
testcase_23 AC 164 ms
89,472 KB
testcase_24 AC 158 ms
89,216 KB
testcase_25 AC 191 ms
89,728 KB
testcase_26 AC 172 ms
89,944 KB
testcase_27 AC 153 ms
89,472 KB
testcase_28 AC 236 ms
98,816 KB
testcase_29 AC 236 ms
98,944 KB
testcase_30 AC 230 ms
94,592 KB
testcase_31 AC 163 ms
90,624 KB
testcase_32 AC 389 ms
103,040 KB
testcase_33 AC 272 ms
92,928 KB
testcase_34 AC 217 ms
97,340 KB
testcase_35 AC 269 ms
104,320 KB
testcase_36 AC 397 ms
98,560 KB
testcase_37 AC 400 ms
98,560 KB
testcase_38 AC 341 ms
95,744 KB
testcase_39 AC 318 ms
94,848 KB
testcase_40 AC 381 ms
98,688 KB
testcase_41 AC 260 ms
99,712 KB
testcase_42 AC 393 ms
98,176 KB
testcase_43 AC 331 ms
94,720 KB
testcase_44 AC 233 ms
94,336 KB
testcase_45 AC 271 ms
98,816 KB
testcase_46 AC 644 ms
107,136 KB
testcase_47 AC 647 ms
106,880 KB
testcase_48 AC 657 ms
107,136 KB
testcase_49 AC 670 ms
106,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """4 6 2
# 1 2 0
# 1 3 0
# 2 1 1
# 3 1 0
# 2 3 0
# 3 2 2
# """
# sys.stdin = io.StringIO(_INPUT)

MOD = 1000000007


def main():
    N, M, K = map(int, input().split())
    P = [None for _ in range(M)]
    Q = [None for _ in range(M)]
    C = [None for _ in range(M)]
    for i in range(M):
        P[i], Q[i], C[i] = map(int, input().split())
        P[i] -= 1
        Q[i] -= 1

    Kmax = 300
    dp = [[0 for _ in range(Kmax+1)] for _ in range(300)]
    for j in range(300):
        dp[j][0] = 1

    for i in range(N-1):
        dp1 = [[0 for _ in range(Kmax+1)] for _ in range(300)]
        for m in range(M):
            for k in range(Kmax+1):
                if k + C[m] <= Kmax:
                    dp1[Q[m]][k+C[m]] = (dp1[Q[m]][k+C[m]] + dp[P[m]][k]) % MOD
        dp = dp1

    n = 0
    for j in range(300):
        n += dp[j][K]
    print(n % MOD)

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