結果

問題 No.1111 コード進行
ユーザー H3PO4H3PO4
提出日時 2020-07-10 23:00:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 432 bytes
コンパイル時間 986 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,584 KB
最終ジャッジ日時 2024-10-11 14:51:13
合計ジャッジ時間 34,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
43,944 KB
testcase_01 AC 503 ms
44,200 KB
testcase_02 AC 498 ms
43,944 KB
testcase_03 AC 508 ms
44,040 KB
testcase_04 AC 503 ms
44,256 KB
testcase_05 AC 504 ms
43,932 KB
testcase_06 AC 517 ms
44,200 KB
testcase_07 AC 503 ms
43,944 KB
testcase_08 AC 504 ms
44,200 KB
testcase_09 AC 505 ms
44,064 KB
testcase_10 AC 500 ms
43,940 KB
testcase_11 AC 504 ms
44,584 KB
testcase_12 AC 505 ms
44,196 KB
testcase_13 AC 499 ms
44,208 KB
testcase_14 AC 514 ms
44,324 KB
testcase_15 AC 507 ms
44,328 KB
testcase_16 AC 512 ms
43,936 KB
testcase_17 AC 509 ms
44,320 KB
testcase_18 AC 501 ms
44,324 KB
testcase_19 AC 502 ms
44,200 KB
testcase_20 AC 505 ms
43,948 KB
testcase_21 AC 504 ms
44,328 KB
testcase_22 AC 507 ms
44,072 KB
testcase_23 AC 499 ms
44,456 KB
testcase_24 AC 530 ms
43,948 KB
testcase_25 AC 524 ms
44,336 KB
testcase_26 AC 508 ms
44,192 KB
testcase_27 AC 498 ms
44,324 KB
testcase_28 AC 522 ms
44,200 KB
testcase_29 AC 524 ms
43,948 KB
testcase_30 WA -
testcase_31 AC 498 ms
43,944 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 510 ms
43,944 KB
testcase_35 AC 522 ms
44,048 KB
testcase_36 AC 807 ms
44,180 KB
testcase_37 AC 706 ms
44,324 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 546 ms
44,192 KB
testcase_42 AC 715 ms
44,204 KB
testcase_43 WA -
testcase_44 AC 554 ms
43,948 KB
testcase_45 AC 584 ms
43,940 KB
testcase_46 WA -
testcase_47 AC 1,260 ms
44,080 KB
testcase_48 AC 969 ms
43,948 KB
testcase_49 AC 762 ms
44,200 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