結果

問題 No.1111 コード進行
ユーザー H3PO4H3PO4
提出日時 2020-07-10 22:22:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,584 KB
最終ジャッジ日時 2024-10-11 09:39:00
合計ジャッジ時間 31,977 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 507 ms
43,936 KB
testcase_01 AC 507 ms
44,332 KB
testcase_02 AC 501 ms
44,320 KB
testcase_03 AC 495 ms
44,068 KB
testcase_04 AC 510 ms
44,332 KB
testcase_05 AC 502 ms
44,200 KB
testcase_06 AC 503 ms
44,204 KB
testcase_07 AC 517 ms
43,944 KB
testcase_08 AC 503 ms
43,940 KB
testcase_09 AC 505 ms
44,192 KB
testcase_10 AC 507 ms
43,940 KB
testcase_11 AC 510 ms
44,192 KB
testcase_12 AC 512 ms
43,944 KB
testcase_13 AC 512 ms
44,200 KB
testcase_14 AC 514 ms
44,320 KB
testcase_15 AC 503 ms
43,940 KB
testcase_16 AC 511 ms
44,204 KB
testcase_17 AC 506 ms
44,320 KB
testcase_18 AC 502 ms
43,980 KB
testcase_19 AC 506 ms
43,940 KB
testcase_20 AC 511 ms
43,988 KB
testcase_21 AC 512 ms
44,052 KB
testcase_22 AC 505 ms
43,948 KB
testcase_23 AC 502 ms
43,948 KB
testcase_24 AC 501 ms
43,940 KB
testcase_25 AC 522 ms
44,320 KB
testcase_26 AC 514 ms
44,448 KB
testcase_27 AC 508 ms
44,072 KB
testcase_28 AC 520 ms
44,064 KB
testcase_29 AC 531 ms
44,324 KB
testcase_30 WA -
testcase_31 AC 502 ms
44,324 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 506 ms
44,064 KB
testcase_35 AC 521 ms
43,948 KB
testcase_36 AC 812 ms
43,940 KB
testcase_37 AC 700 ms
44,192 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 542 ms
43,944 KB
testcase_42 AC 723 ms
44,584 KB
testcase_43 WA -
testcase_44 AC 561 ms
44,036 KB
testcase_45 AC 591 ms
44,328 KB
testcase_46 WA -
testcase_47 AC 1,254 ms
43,940 KB
testcase_48 AC 963 ms
44,204 KB
testcase_49 AC 762 ms
44,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, M, K = map(int, input().split())
G = [[] for _ in range(N)]
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(dp[:, -1].sum() % MOD)
0