結果

問題 No.1111 コード進行
ユーザー yuly3yuly3
提出日時 2020-07-15 00:31:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,088 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 297,236 KB
最終ジャッジ日時 2024-11-19 07:27:33
合計ジャッジ時間 18,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 253 ms
295,216 KB
testcase_01 AC 248 ms
294,996 KB
testcase_02 AC 251 ms
294,996 KB
testcase_03 AC 249 ms
294,864 KB
testcase_04 AC 251 ms
295,120 KB
testcase_05 AC 264 ms
296,644 KB
testcase_06 AC 276 ms
296,276 KB
testcase_07 AC 291 ms
296,944 KB
testcase_08 AC 273 ms
296,280 KB
testcase_09 AC 273 ms
296,484 KB
testcase_10 AC 270 ms
296,452 KB
testcase_11 AC 267 ms
296,396 KB
testcase_12 AC 279 ms
296,388 KB
testcase_13 AC 270 ms
296,420 KB
testcase_14 AC 294 ms
296,528 KB
testcase_15 AC 276 ms
296,688 KB
testcase_16 AC 285 ms
296,440 KB
testcase_17 AC 266 ms
296,320 KB
testcase_18 AC 268 ms
296,264 KB
testcase_19 AC 264 ms
296,272 KB
testcase_20 AC 271 ms
296,332 KB
testcase_21 AC 263 ms
296,392 KB
testcase_22 AC 276 ms
296,852 KB
testcase_23 AC 271 ms
296,412 KB
testcase_24 AC 272 ms
296,584 KB
testcase_25 AC 297 ms
296,808 KB
testcase_26 AC 280 ms
296,740 KB
testcase_27 AC 270 ms
296,516 KB
testcase_28 AC 296 ms
296,832 KB
testcase_29 AC 295 ms
296,680 KB
testcase_30 AC 358 ms
296,800 KB
testcase_31 AC 274 ms
296,892 KB
testcase_32 AC 411 ms
296,992 KB
testcase_33 AC 437 ms
296,644 KB
testcase_34 AC 289 ms
296,524 KB
testcase_35 AC 298 ms
296,772 KB
testcase_36 AC 618 ms
296,524 KB
testcase_37 AC 362 ms
296,532 KB
testcase_38 AC 346 ms
297,156 KB
testcase_39 AC 565 ms
296,700 KB
testcase_40 AC 552 ms
296,684 KB
testcase_41 AC 348 ms
297,236 KB
testcase_42 AC 425 ms
296,580 KB
testcase_43 AC 439 ms
296,740 KB
testcase_44 AC 328 ms
296,336 KB
testcase_45 AC 372 ms
296,468 KB
testcase_46 AC 274 ms
297,136 KB
testcase_47 AC 1,088 ms
297,196 KB
testcase_48 AC 276 ms
296,716 KB
testcase_49 AC 279 ms
296,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


def solve():
    MOD = 10 ** 9 + 7
    N, M, K = map(int, rl().split())
    PQC = [list(map(int, rl().split())) for _ in range(M)]
    
    dp = [[[0] * 301 for _ in range(301)] for _ in range(301)]
    for p, _, _ in PQC:
        dp[1][0][p] = 1
    for i in range(1, N):
        for j in range(K + 1):
            for p, q, c in PQC:
                if K < j + c:
                    continue
                dp[i + 1][j + c][q] += dp[i][j][p]
                dp[i + 1][j + c][q] %= MOD
    print(sum(dp[N][K]) % MOD)


if __name__ == '__main__':
    solve()
0