結果

問題 No.1111 コード進行
ユーザー tcltktcltk
提出日時 2021-01-17 15:21:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 1,276 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 107,300 KB
最終ジャッジ日時 2024-05-07 04:33:00
合計ジャッジ時間 14,362 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
89,316 KB
testcase_01 AC 146 ms
88,984 KB
testcase_02 AC 146 ms
89,316 KB
testcase_03 AC 147 ms
89,060 KB
testcase_04 AC 144 ms
89,264 KB
testcase_05 AC 147 ms
89,292 KB
testcase_06 AC 159 ms
89,888 KB
testcase_07 AC 170 ms
89,596 KB
testcase_08 AC 178 ms
89,408 KB
testcase_09 AC 160 ms
89,728 KB
testcase_10 AC 165 ms
89,796 KB
testcase_11 AC 163 ms
89,852 KB
testcase_12 AC 166 ms
89,696 KB
testcase_13 AC 160 ms
89,976 KB
testcase_14 AC 176 ms
89,752 KB
testcase_15 AC 166 ms
89,760 KB
testcase_16 AC 167 ms
89,596 KB
testcase_17 AC 164 ms
89,808 KB
testcase_18 AC 155 ms
89,796 KB
testcase_19 AC 155 ms
89,076 KB
testcase_20 AC 155 ms
89,316 KB
testcase_21 AC 163 ms
89,548 KB
testcase_22 AC 160 ms
89,812 KB
testcase_23 AC 161 ms
89,548 KB
testcase_24 AC 158 ms
89,820 KB
testcase_25 AC 187 ms
90,292 KB
testcase_26 AC 173 ms
89,488 KB
testcase_27 AC 153 ms
89,796 KB
testcase_28 AC 235 ms
99,164 KB
testcase_29 AC 242 ms
98,548 KB
testcase_30 AC 238 ms
95,400 KB
testcase_31 AC 165 ms
90,504 KB
testcase_32 AC 400 ms
102,664 KB
testcase_33 AC 274 ms
93,632 KB
testcase_34 AC 221 ms
97,480 KB
testcase_35 AC 274 ms
104,392 KB
testcase_36 AC 403 ms
98,832 KB
testcase_37 AC 406 ms
99,104 KB
testcase_38 AC 351 ms
96,008 KB
testcase_39 AC 326 ms
95,400 KB
testcase_40 AC 389 ms
99,132 KB
testcase_41 AC 278 ms
100,552 KB
testcase_42 AC 403 ms
98,488 KB
testcase_43 AC 339 ms
94,868 KB
testcase_44 AC 242 ms
94,660 KB
testcase_45 AC 283 ms
98,880 KB
testcase_46 AC 655 ms
107,272 KB
testcase_47 AC 660 ms
107,160 KB
testcase_48 AC 667 ms
107,300 KB
testcase_49 AC 669 ms
107,260 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