結果

問題 No.1111 コード進行
ユーザー H3PO4H3PO4
提出日時 2020-07-10 22:55:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,416 KB
最終ジャッジ日時 2024-10-11 10:12:04
合計ジャッジ時間 33,549 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
43,864 KB
testcase_01 AC 521 ms
43,944 KB
testcase_02 AC 536 ms
44,080 KB
testcase_03 AC 538 ms
44,080 KB
testcase_04 AC 539 ms
43,960 KB
testcase_05 AC 536 ms
43,832 KB
testcase_06 AC 541 ms
44,208 KB
testcase_07 AC 540 ms
43,816 KB
testcase_08 AC 542 ms
44,080 KB
testcase_09 AC 536 ms
44,084 KB
testcase_10 AC 534 ms
44,080 KB
testcase_11 AC 527 ms
44,416 KB
testcase_12 AC 540 ms
44,204 KB
testcase_13 AC 531 ms
43,952 KB
testcase_14 AC 548 ms
44,328 KB
testcase_15 AC 524 ms
44,208 KB
testcase_16 AC 536 ms
43,824 KB
testcase_17 AC 529 ms
43,824 KB
testcase_18 AC 519 ms
44,084 KB
testcase_19 AC 525 ms
43,956 KB
testcase_20 AC 522 ms
43,824 KB
testcase_21 AC 522 ms
43,952 KB
testcase_22 AC 528 ms
43,944 KB
testcase_23 AC 529 ms
43,944 KB
testcase_24 AC 533 ms
43,824 KB
testcase_25 AC 550 ms
44,080 KB
testcase_26 AC 548 ms
44,080 KB
testcase_27 AC 534 ms
44,072 KB
testcase_28 AC 542 ms
43,816 KB
testcase_29 AC 552 ms
43,948 KB
testcase_30 WA -
testcase_31 AC 529 ms
44,080 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 548 ms
44,200 KB
testcase_35 AC 542 ms
43,704 KB
testcase_36 AC 840 ms
44,212 KB
testcase_37 AC 735 ms
44,084 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 576 ms
44,080 KB
testcase_42 AC 741 ms
43,816 KB
testcase_43 WA -
testcase_44 AC 577 ms
43,820 KB
testcase_45 AC 619 ms
43,948 KB
testcase_46 WA -
testcase_47 AC 1,281 ms
43,952 KB
testcase_48 AC 974 ms
44,080 KB
testcase_49 AC 784 ms
43,832 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=int)
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