結果

問題 No.1111 コード進行
ユーザー nephrologistnephrologist
提出日時 2020-07-10 22:04:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,629 ms / 2,000 ms
コード長 951 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 81,716 KB
実行使用メモリ 296,448 KB
最終ジャッジ日時 2024-10-11 09:17:33
合計ジャッジ時間 11,529 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,160 KB
testcase_01 AC 49 ms
60,416 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 70 ms
78,164 KB
testcase_06 AC 89 ms
80,640 KB
testcase_07 AC 84 ms
80,212 KB
testcase_08 AC 70 ms
74,700 KB
testcase_09 AC 82 ms
79,116 KB
testcase_10 AC 88 ms
82,724 KB
testcase_11 AC 67 ms
73,684 KB
testcase_12 AC 87 ms
80,692 KB
testcase_13 AC 83 ms
79,876 KB
testcase_14 AC 117 ms
83,344 KB
testcase_15 AC 68 ms
74,320 KB
testcase_16 AC 92 ms
81,424 KB
testcase_17 AC 84 ms
83,012 KB
testcase_18 AC 60 ms
70,176 KB
testcase_19 AC 52 ms
65,856 KB
testcase_20 AC 67 ms
73,588 KB
testcase_21 AC 51 ms
63,860 KB
testcase_22 AC 101 ms
85,320 KB
testcase_23 AC 82 ms
79,128 KB
testcase_24 AC 77 ms
79,964 KB
testcase_25 AC 104 ms
84,528 KB
testcase_26 AC 87 ms
80,560 KB
testcase_27 AC 73 ms
77,344 KB
testcase_28 AC 308 ms
186,228 KB
testcase_29 AC 191 ms
123,904 KB
testcase_30 AC 273 ms
148,596 KB
testcase_31 AC 95 ms
88,648 KB
testcase_32 AC 319 ms
143,700 KB
testcase_33 AC 369 ms
118,412 KB
testcase_34 AC 238 ms
156,092 KB
testcase_35 AC 289 ms
180,500 KB
testcase_36 AC 674 ms
185,276 KB
testcase_37 AC 271 ms
105,684 KB
testcase_38 AC 222 ms
97,876 KB
testcase_39 AC 420 ms
147,928 KB
testcase_40 AC 537 ms
177,088 KB
testcase_41 AC 366 ms
199,176 KB
testcase_42 AC 357 ms
127,668 KB
testcase_43 AC 389 ms
120,320 KB
testcase_44 AC 169 ms
100,992 KB
testcase_45 AC 325 ms
151,680 KB
testcase_46 AC 82 ms
83,400 KB
testcase_47 AC 1,629 ms
296,448 KB
testcase_48 AC 71 ms
73,600 KB
testcase_49 AC 73 ms
73,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

mod = 10 ** 9 + 7
n, m, k = map(int, readline().split())
mm = map(int, read().split())
PQC = zip(mm, mm, mm)

jisho = [{} for _ in range(300)]

for p, q, c in PQC:
    p -= 1
    q -= 1
    jisho[p][q] = c

# dp[i][j][k]: i番目まで前がjで、合計kとなる組み合わせ
dp = [[[0] * (k + 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 j in range(300):
        for a in range(k + 1):
            ni = i + 1
            dic = jisho[j]
            for idx, val in dic.items():
                if val + a > k:
                    continue
                nj = idx
                na = val + a
                dp[ni][nj][na] += dp[i][j][a]
                dp[ni][nj][na] %= mod
ans = 0
for j in range(300):
    ans += dp[-1][j][k]
    ans%=mod
print(ans%mod)
0