結果

問題 No.1111 コード進行
ユーザー tcltktcltk
提出日時 2021-01-17 15:16:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,316 bytes
コンパイル時間 571 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 439,268 KB
最終ジャッジ日時 2024-11-29 17:30:28
合計ジャッジ時間 62,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
95,652 KB
testcase_01 AC 151 ms
439,268 KB
testcase_02 AC 144 ms
95,832 KB
testcase_03 AC 145 ms
221,188 KB
testcase_04 AC 144 ms
95,996 KB
testcase_05 AC 162 ms
304,452 KB
testcase_06 AC 250 ms
102,244 KB
testcase_07 AC 415 ms
307,192 KB
testcase_08 AC 448 ms
107,692 KB
testcase_09 AC 182 ms
257,648 KB
testcase_10 AC 467 ms
120,500 KB
testcase_11 AC 311 ms
267,920 KB
testcase_12 AC 281 ms
102,116 KB
testcase_13 AC 219 ms
295,140 KB
testcase_14 AC 440 ms
107,732 KB
testcase_15 AC 427 ms
118,288 KB
testcase_16 AC 309 ms
103,408 KB
testcase_17 AC 372 ms
233,100 KB
testcase_18 AC 284 ms
107,452 KB
testcase_19 AC 155 ms
305,800 KB
testcase_20 AC 174 ms
98,380 KB
testcase_21 AC 353 ms
349,484 KB
testcase_22 AC 392 ms
119,396 KB
testcase_23 AC 320 ms
385,608 KB
testcase_24 AC 248 ms
103,276 KB
testcase_25 AC 766 ms
269,280 KB
testcase_26 AC 306 ms
99,440 KB
testcase_27 AC 164 ms
201,040 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 424 ms
100,232 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 1,152 ms
89,684 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 571 ms
89,492 KB
testcase_45 TLE -
testcase_46 AC 1,041 ms
89,080 KB
testcase_47 RE -
testcase_48 AC 1,047 ms
88,728 KB
testcase_49 AC 1,603 ms
221,228 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

import gc

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
        gc.collect()

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

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