結果

問題 No.1111 コード進行
ユーザー tcltktcltk
提出日時 2021-01-17 15:12:54
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,238 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 850,032 KB
最終ジャッジ日時 2024-11-29 17:13:03
合計ジャッジ時間 39,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
89,768 KB
testcase_01 AC 146 ms
89,176 KB
testcase_02 AC 141 ms
89,108 KB
testcase_03 AC 139 ms
89,084 KB
testcase_04 AC 140 ms
88,788 KB
testcase_05 AC 153 ms
89,504 KB
testcase_06 AC 255 ms
130,868 KB
testcase_07 AC 460 ms
198,780 KB
testcase_08 AC 477 ms
176,020 KB
testcase_09 AC 170 ms
89,480 KB
testcase_10 AC 542 ms
314,376 KB
testcase_11 AC 309 ms
153,580 KB
testcase_12 AC 278 ms
130,816 KB
testcase_13 AC 197 ms
108,420 KB
testcase_14 AC 466 ms
175,756 KB
testcase_15 AC 496 ms
267,264 KB
testcase_16 AC 308 ms
130,432 KB
testcase_17 AC 433 ms
289,280 KB
testcase_18 AC 272 ms
176,212 KB
testcase_19 AC 151 ms
89,472 KB
testcase_20 AC 162 ms
89,968 KB
testcase_21 AC 397 ms
221,876 KB
testcase_22 AC 453 ms
292,736 KB
testcase_23 AC 336 ms
174,592 KB
testcase_24 AC 237 ms
130,944 KB
testcase_25 AC 945 ms
316,672 KB
testcase_26 AC 284 ms
129,920 KB
testcase_27 AC 155 ms
89,856 KB
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 AC 470 ms
292,164 KB
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 AC 672 ms
417,012 KB
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 AC 406 ms
184,332 KB
testcase_45 MLE -
testcase_46 AC 212 ms
94,488 KB
testcase_47 RE -
testcase_48 AC 187 ms
94,308 KB
testcase_49 AC 1,013 ms
308,392 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 _ 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