結果

問題 No.1111 コード進行
ユーザー nephrologistnephrologist
提出日時 2020-07-10 22:03:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 934 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 296,704 KB
最終ジャッジ日時 2024-10-11 09:14:48
合計ジャッジ時間 11,099 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,336 KB
testcase_01 AC 45 ms
61,548 KB
testcase_02 AC 39 ms
52,336 KB
testcase_03 AC 39 ms
53,032 KB
testcase_04 AC 38 ms
52,952 KB
testcase_05 AC 69 ms
78,152 KB
testcase_06 AC 86 ms
81,052 KB
testcase_07 AC 85 ms
80,288 KB
testcase_08 AC 70 ms
74,880 KB
testcase_09 AC 84 ms
78,848 KB
testcase_10 AC 88 ms
82,720 KB
testcase_11 AC 68 ms
73,664 KB
testcase_12 AC 88 ms
80,604 KB
testcase_13 AC 85 ms
79,616 KB
testcase_14 AC 118 ms
83,308 KB
testcase_15 AC 67 ms
72,960 KB
testcase_16 AC 92 ms
81,280 KB
testcase_17 AC 84 ms
82,944 KB
testcase_18 AC 61 ms
70,016 KB
testcase_19 AC 52 ms
64,512 KB
testcase_20 AC 67 ms
73,472 KB
testcase_21 AC 50 ms
63,616 KB
testcase_22 AC 100 ms
85,376 KB
testcase_23 AC 79 ms
79,232 KB
testcase_24 AC 77 ms
80,128 KB
testcase_25 AC 104 ms
84,480 KB
testcase_26 WA -
testcase_27 AC 74 ms
77,100 KB
testcase_28 AC 300 ms
186,112 KB
testcase_29 AC 190 ms
123,872 KB
testcase_30 WA -
testcase_31 AC 94 ms
88,704 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 240 ms
155,932 KB
testcase_35 AC 289 ms
180,224 KB
testcase_36 AC 660 ms
185,088 KB
testcase_37 AC 269 ms
105,644 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 365 ms
199,176 KB
testcase_42 AC 347 ms
127,872 KB
testcase_43 WA -
testcase_44 AC 161 ms
101,188 KB
testcase_45 AC 310 ms
151,424 KB
testcase_46 WA -
testcase_47 AC 1,617 ms
296,704 KB
testcase_48 AC 68 ms
73,856 KB
testcase_49 AC 69 ms
74,112 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]
print(ans)
0