結果

問題 No.1111 コード進行
ユーザー tcltktcltk
提出日時 2021-01-17 15:14:16
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,281 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 763,000 KB
最終ジャッジ日時 2024-05-07 04:20:08
合計ジャッジ時間 13,620 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
96,120 KB
testcase_01 AC 137 ms
88,776 KB
testcase_02 AC 135 ms
88,988 KB
testcase_03 AC 137 ms
89,176 KB
testcase_04 AC 135 ms
88,948 KB
testcase_05 AC 152 ms
89,244 KB
testcase_06 AC 219 ms
110,696 KB
testcase_07 AC 391 ms
176,744 KB
testcase_08 AC 397 ms
155,372 KB
testcase_09 AC 162 ms
89,624 KB
testcase_10 AC 499 ms
309,492 KB
testcase_11 AC 263 ms
128,932 KB
testcase_12 AC 236 ms
110,268 KB
testcase_13 AC 177 ms
96,844 KB
testcase_14 AC 383 ms
155,520 KB
testcase_15 AC 449 ms
263,652 KB
testcase_16 AC 259 ms
108,528 KB
testcase_17 AC 399 ms
286,568 KB
testcase_18 AC 235 ms
148,620 KB
testcase_19 AC 143 ms
89,164 KB
testcase_20 AC 155 ms
89,032 KB
testcase_21 AC 344 ms
198,412 KB
testcase_22 AC 418 ms
286,668 KB
testcase_23 AC 279 ms
149,360 KB
testcase_24 AC 203 ms
108,860 KB
testcase_25 AC 782 ms
308,704 KB
testcase_26 AC 237 ms
100,556 KB
testcase_27 AC 149 ms
89,532 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 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