結果

問題 No.1111 コード進行
ユーザー ntudantuda
提出日時 2024-11-14 21:26:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,948 KB
実行使用メモリ 92,216 KB
最終ジャッジ日時 2024-11-14 21:26:12
合計ジャッジ時間 5,763 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 40 ms
52,328 KB
testcase_05 AC 41 ms
55,424 KB
testcase_06 AC 55 ms
67,456 KB
testcase_07 AC 60 ms
69,248 KB
testcase_08 AC 55 ms
65,152 KB
testcase_09 AC 53 ms
65,280 KB
testcase_10 AC 53 ms
69,376 KB
testcase_11 AC 52 ms
63,920 KB
testcase_12 AC 58 ms
68,992 KB
testcase_13 AC 51 ms
64,640 KB
testcase_14 AC 65 ms
72,960 KB
testcase_15 AC 48 ms
62,976 KB
testcase_16 AC 60 ms
69,504 KB
testcase_17 AC 48 ms
66,944 KB
testcase_18 AC 43 ms
59,520 KB
testcase_19 AC 40 ms
53,888 KB
testcase_20 AC 48 ms
62,848 KB
testcase_21 AC 44 ms
59,136 KB
testcase_22 AC 54 ms
71,424 KB
testcase_23 AC 54 ms
66,048 KB
testcase_24 AC 53 ms
66,560 KB
testcase_25 AC 66 ms
74,436 KB
testcase_26 AC 56 ms
67,584 KB
testcase_27 AC 49 ms
62,208 KB
testcase_28 AC 79 ms
81,664 KB
testcase_29 AC 71 ms
77,440 KB
testcase_30 AC 94 ms
81,024 KB
testcase_31 AC 64 ms
74,044 KB
testcase_32 AC 115 ms
78,336 KB
testcase_33 AC 121 ms
79,232 KB
testcase_34 AC 71 ms
78,848 KB
testcase_35 AC 80 ms
79,596 KB
testcase_36 AC 191 ms
82,884 KB
testcase_37 AC 97 ms
76,728 KB
testcase_38 AC 93 ms
76,868 KB
testcase_39 AC 153 ms
80,496 KB
testcase_40 AC 163 ms
82,112 KB
testcase_41 AC 96 ms
82,624 KB
testcase_42 AC 122 ms
77,584 KB
testcase_43 AC 125 ms
78,028 KB
testcase_44 AC 74 ms
76,848 KB
testcase_45 AC 96 ms
79,684 KB
testcase_46 AC 61 ms
71,788 KB
testcase_47 AC 364 ms
92,216 KB
testcase_48 AC 60 ms
72,004 KB
testcase_49 AC 61 ms
72,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
N, M, K = map(int, input().split())
PQC = [list(map(int, input().split())) for _ in range(M)]
dp = [([1] + [0] * K) for _ in range(301)]
for i in range(N - 1):
    dp2 = [[0] * (K + 1) for _ in range(301)]
    for p, q, c in PQC:
        for i in range(K - c + 1):
            dp2[q][i + c] += dp[p][i]
            dp2[q][i + c] %= MOD
    dp = dp2
ans = 0
for i in range(301):
    ans += dp[i][-1]
    ans %= MOD
print(ans)
0