結果

問題 No.1111 コード進行
ユーザー tcltktcltk
提出日時 2021-01-17 15:21:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 948 ms / 2,000 ms
コード長 1,231 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 308,824 KB
最終ジャッジ日時 2024-11-29 17:45:23
合計ジャッジ時間 16,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
89,660 KB
testcase_01 AC 130 ms
89,172 KB
testcase_02 AC 129 ms
88,908 KB
testcase_03 AC 128 ms
89,308 KB
testcase_04 AC 129 ms
89,260 KB
testcase_05 AC 132 ms
89,652 KB
testcase_06 AC 145 ms
89,892 KB
testcase_07 AC 154 ms
89,716 KB
testcase_08 AC 158 ms
89,488 KB
testcase_09 AC 142 ms
89,820 KB
testcase_10 AC 154 ms
89,956 KB
testcase_11 AC 148 ms
89,596 KB
testcase_12 AC 150 ms
89,924 KB
testcase_13 AC 142 ms
89,912 KB
testcase_14 AC 159 ms
89,856 KB
testcase_15 AC 152 ms
89,552 KB
testcase_16 AC 153 ms
89,732 KB
testcase_17 AC 147 ms
89,944 KB
testcase_18 AC 149 ms
89,804 KB
testcase_19 AC 133 ms
89,692 KB
testcase_20 AC 140 ms
89,548 KB
testcase_21 AC 148 ms
89,556 KB
testcase_22 AC 151 ms
89,948 KB
testcase_23 AC 150 ms
89,668 KB
testcase_24 AC 145 ms
89,552 KB
testcase_25 AC 186 ms
102,260 KB
testcase_26 AC 154 ms
89,944 KB
testcase_27 AC 138 ms
89,740 KB
testcase_28 AC 315 ms
216,824 KB
testcase_29 AC 305 ms
198,524 KB
testcase_30 AC 278 ms
160,832 KB
testcase_31 AC 159 ms
105,624 KB
testcase_32 AC 528 ms
253,580 KB
testcase_33 AC 309 ms
142,168 KB
testcase_34 AC 289 ms
198,472 KB
testcase_35 AC 400 ms
282,216 KB
testcase_36 AC 514 ms
216,856 KB
testcase_37 AC 530 ms
198,044 KB
testcase_38 AC 440 ms
176,080 KB
testcase_39 AC 394 ms
160,780 KB
testcase_40 AC 509 ms
216,404 KB
testcase_41 AC 366 ms
235,680 KB
testcase_42 AC 514 ms
216,528 KB
testcase_43 AC 411 ms
160,768 KB
testcase_44 AC 294 ms
161,036 KB
testcase_45 AC 376 ms
216,936 KB
testcase_46 AC 891 ms
308,660 KB
testcase_47 AC 893 ms
308,648 KB
testcase_48 AC 931 ms
308,620 KB
testcase_49 AC 948 ms
308,824 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 _ in range(N)]
    for j in range(300):
        dp[0][j][0] = 1

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

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

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