結果

問題 No.1111 コード進行
ユーザー tcltktcltk
提出日時 2021-01-17 15:14:16
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,281 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 844,900 KB
最終ジャッジ日時 2024-11-29 17:16:06
合計ジャッジ時間 55,662 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 159 ms
94,336 KB
testcase_02 AC 123 ms
95,264 KB
testcase_03 AC 152 ms
420,388 KB
testcase_04 AC 129 ms
94,208 KB
testcase_05 MLE -
testcase_06 AC 196 ms
117,540 KB
testcase_07 MLE -
testcase_08 AC 361 ms
160,640 KB
testcase_09 AC 146 ms
399,656 KB
testcase_10 AC 434 ms
314,112 KB
testcase_11 AC 282 ms
438,108 KB
testcase_12 AC 212 ms
115,712 KB
testcase_13 AC 161 ms
417,316 KB
testcase_14 AC 358 ms
160,896 KB
testcase_15 MLE -
testcase_16 AC 232 ms
113,536 KB
testcase_17 MLE -
testcase_18 AC 230 ms
153,856 KB
testcase_19 MLE -
testcase_20 AC 136 ms
94,592 KB
testcase_21 MLE -
testcase_22 AC 380 ms
292,096 KB
testcase_23 MLE -
testcase_24 AC 181 ms
114,304 KB
testcase_25 MLE -
testcase_26 AC 212 ms
100,928 KB
testcase_27 AC 134 ms
89,992 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 305 ms
234,880 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 280 ms
130,944 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 223 ms
98,432 KB
testcase_45 TLE -
testcase_46 AC 149 ms
89,728 KB
testcase_47 RE -
testcase_48 AC 148 ms
89,644 KB
testcase_49 AC 584 ms
434,180 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 = 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