結果

問題 No.1111 コード進行
ユーザー H3PO4H3PO4
提出日時 2020-07-10 23:01:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,276 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,596 KB
最終ジャッジ日時 2024-10-11 15:59:16
合計ジャッジ時間 34,165 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
43,956 KB
testcase_01 AC 523 ms
43,952 KB
testcase_02 AC 528 ms
43,952 KB
testcase_03 AC 528 ms
44,220 KB
testcase_04 AC 527 ms
44,128 KB
testcase_05 AC 525 ms
44,220 KB
testcase_06 AC 530 ms
44,468 KB
testcase_07 AC 532 ms
44,220 KB
testcase_08 AC 523 ms
44,460 KB
testcase_09 AC 523 ms
44,092 KB
testcase_10 AC 526 ms
44,344 KB
testcase_11 AC 520 ms
44,468 KB
testcase_12 AC 533 ms
43,952 KB
testcase_13 AC 521 ms
43,948 KB
testcase_14 AC 544 ms
44,336 KB
testcase_15 AC 519 ms
44,376 KB
testcase_16 AC 534 ms
44,212 KB
testcase_17 AC 529 ms
43,992 KB
testcase_18 AC 526 ms
44,216 KB
testcase_19 AC 526 ms
44,212 KB
testcase_20 AC 525 ms
44,340 KB
testcase_21 AC 525 ms
43,964 KB
testcase_22 AC 526 ms
43,948 KB
testcase_23 AC 536 ms
43,952 KB
testcase_24 AC 523 ms
44,208 KB
testcase_25 AC 552 ms
44,468 KB
testcase_26 AC 541 ms
44,464 KB
testcase_27 AC 526 ms
44,340 KB
testcase_28 AC 537 ms
44,336 KB
testcase_29 AC 551 ms
44,080 KB
testcase_30 AC 586 ms
44,056 KB
testcase_31 AC 530 ms
44,464 KB
testcase_32 AC 726 ms
44,212 KB
testcase_33 AC 690 ms
44,228 KB
testcase_34 AC 549 ms
44,596 KB
testcase_35 AC 560 ms
44,220 KB
testcase_36 AC 859 ms
44,116 KB
testcase_37 AC 757 ms
43,988 KB
testcase_38 AC 714 ms
43,996 KB
testcase_39 AC 768 ms
44,204 KB
testcase_40 AC 782 ms
44,212 KB
testcase_41 AC 566 ms
44,408 KB
testcase_42 AC 753 ms
43,952 KB
testcase_43 AC 731 ms
44,464 KB
testcase_44 AC 580 ms
43,956 KB
testcase_45 AC 610 ms
44,472 KB
testcase_46 AC 1,079 ms
44,096 KB
testcase_47 AC 1,276 ms
44,592 KB
testcase_48 AC 1,085 ms
43,956 KB
testcase_49 AC 830 ms
44,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, M, K = map(int, input().split())
PQC = [tuple(map(int, input().split())) for _ in range(M)]
MOD = 10 ** 9 + 7

dp = np.zeros((300, K + 1), dtype=np.int64)
dp[:, 0] = 1

for i in range(N - 1):
    new_dp = np.zeros_like(dp)
    for p, q, c in PQC:
        if c > K:
            continue
        new_dp[q - 1, c:] += dp[p - 1, :K + 1 - c]
        new_dp[q - 1] %= MOD
    dp = new_dp
print(sum(dp[:, -1]) % MOD)
0