結果

問題 No.1111 コード進行
ユーザー tcltktcltk
提出日時 2021-01-17 15:12:54
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,238 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 849,672 KB
最終ジャッジ日時 2024-05-07 04:18:41
合計ジャッジ時間 11,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
89,948 KB
testcase_01 AC 142 ms
89,348 KB
testcase_02 AC 135 ms
89,136 KB
testcase_03 AC 138 ms
89,000 KB
testcase_04 AC 133 ms
89,088 KB
testcase_05 AC 145 ms
89,424 KB
testcase_06 AC 247 ms
130,816 KB
testcase_07 AC 456 ms
198,864 KB
testcase_08 AC 469 ms
175,964 KB
testcase_09 AC 165 ms
89,892 KB
testcase_10 AC 524 ms
314,364 KB
testcase_11 AC 319 ms
153,772 KB
testcase_12 AC 274 ms
130,712 KB
testcase_13 AC 193 ms
108,516 KB
testcase_14 AC 463 ms
176,224 KB
testcase_15 AC 488 ms
266,968 KB
testcase_16 AC 301 ms
130,576 KB
testcase_17 AC 416 ms
289,528 KB
testcase_18 AC 267 ms
176,340 KB
testcase_19 AC 140 ms
89,664 KB
testcase_20 AC 153 ms
90,060 KB
testcase_21 AC 380 ms
222,124 KB
testcase_22 AC 444 ms
292,712 KB
testcase_23 AC 323 ms
174,480 KB
testcase_24 AC 227 ms
131,232 KB
testcase_25 AC 915 ms
316,792 KB
testcase_26 AC 280 ms
130,052 KB
testcase_27 AC 146 ms
89,680 KB
testcase_28 MLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

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 = max(C) * N
    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