結果

問題 No.1111 コード進行
ユーザー roarisroaris
提出日時 2020-07-10 21:42:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,298 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 296,576 KB
最終ジャッジ日時 2024-10-11 08:35:24
合計ジャッジ時間 10,527 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
61,184 KB
testcase_01 AC 53 ms
60,544 KB
testcase_02 AC 47 ms
53,760 KB
testcase_03 AC 51 ms
54,016 KB
testcase_04 AC 49 ms
53,888 KB
testcase_05 AC 63 ms
66,560 KB
testcase_06 AC 92 ms
80,768 KB
testcase_07 AC 74 ms
70,272 KB
testcase_08 AC 67 ms
67,328 KB
testcase_09 AC 80 ms
74,240 KB
testcase_10 AC 98 ms
82,944 KB
testcase_11 AC 67 ms
66,688 KB
testcase_12 AC 92 ms
80,768 KB
testcase_13 AC 77 ms
71,680 KB
testcase_14 AC 109 ms
83,200 KB
testcase_15 AC 67 ms
67,200 KB
testcase_16 AC 97 ms
81,408 KB
testcase_17 AC 75 ms
72,960 KB
testcase_18 AC 64 ms
65,792 KB
testcase_19 AC 62 ms
64,128 KB
testcase_20 AC 65 ms
66,816 KB
testcase_21 AC 61 ms
64,128 KB
testcase_22 AC 91 ms
85,248 KB
testcase_23 AC 69 ms
68,864 KB
testcase_24 AC 71 ms
69,376 KB
testcase_25 AC 99 ms
84,608 KB
testcase_26 AC 79 ms
70,912 KB
testcase_27 AC 68 ms
68,096 KB
testcase_28 AC 255 ms
181,120 KB
testcase_29 AC 166 ms
123,648 KB
testcase_30 AC 231 ms
148,864 KB
testcase_31 AC 93 ms
88,320 KB
testcase_32 AC 351 ms
143,872 KB
testcase_33 AC 332 ms
118,656 KB
testcase_34 AC 210 ms
156,288 KB
testcase_35 AC 246 ms
180,224 KB
testcase_36 AC 548 ms
184,960 KB
testcase_37 AC 233 ms
105,344 KB
testcase_38 AC 193 ms
97,664 KB
testcase_39 AC 357 ms
147,584 KB
testcase_40 AC 440 ms
176,768 KB
testcase_41 AC 317 ms
199,296 KB
testcase_42 AC 311 ms
127,616 KB
testcase_43 AC 324 ms
120,448 KB
testcase_44 AC 147 ms
100,864 KB
testcase_45 AC 275 ms
151,680 KB
testcase_46 AC 95 ms
83,456 KB
testcase_47 AC 1,298 ms
296,576 KB
testcase_48 AC 74 ms
72,832 KB
testcase_49 AC 74 ms
73,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M, K = map(int, input().split())
G = [[] for _ in range(300)]

for _ in range(M):
    P, Q, C = map(int, input().split())
    G[P-1].append((Q-1, C))
    
dp = [[[0]*(K+1) for _ in range(300)] for _ in range(N)]

for i in range(300):
    dp[0][i][0] = 1

MOD = 10**9+7

for i in range(N-1):
    for j in range(300):
        for k in range(K+1):
            for nj, C in G[j]:
                if k+C<=K:
                    dp[i+1][nj][k+C] += dp[i][j][k]
                    dp[i+1][nj][k+C] %= MOD

ans = 0

for i in range(300):
    ans += dp[N-1][i][K]
    ans %= MOD

print(ans)
0