結果

問題 No.1111 コード進行
ユーザー 👑 rin204rin204
提出日時 2022-07-04 16:02:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 924 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 160,768 KB
最終ジャッジ日時 2024-12-14 06:40:57
合計ジャッジ時間 8,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,136 KB
testcase_01 AC 48 ms
59,300 KB
testcase_02 AC 42 ms
52,992 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 42 ms
52,480 KB
testcase_05 AC 59 ms
70,016 KB
testcase_06 AC 90 ms
78,208 KB
testcase_07 AC 85 ms
77,952 KB
testcase_08 AC 68 ms
70,912 KB
testcase_09 AC 72 ms
74,240 KB
testcase_10 AC 80 ms
78,048 KB
testcase_11 AC 67 ms
70,016 KB
testcase_12 AC 86 ms
78,592 KB
testcase_13 AC 84 ms
78,208 KB
testcase_14 AC 101 ms
79,476 KB
testcase_15 AC 68 ms
71,336 KB
testcase_16 AC 86 ms
79,096 KB
testcase_17 AC 86 ms
77,824 KB
testcase_18 AC 60 ms
67,584 KB
testcase_19 AC 52 ms
62,336 KB
testcase_20 AC 66 ms
70,400 KB
testcase_21 AC 51 ms
63,360 KB
testcase_22 AC 82 ms
78,464 KB
testcase_23 AC 71 ms
74,240 KB
testcase_24 AC 80 ms
77,696 KB
testcase_25 AC 99 ms
78,208 KB
testcase_26 AC 86 ms
77,184 KB
testcase_27 AC 69 ms
70,016 KB
testcase_28 AC 184 ms
94,460 KB
testcase_29 AC 134 ms
80,820 KB
testcase_30 AC 172 ms
89,216 KB
testcase_31 AC 83 ms
78,724 KB
testcase_32 AC 194 ms
82,560 KB
testcase_33 AC 242 ms
89,804 KB
testcase_34 AC 146 ms
88,064 KB
testcase_35 AC 174 ms
87,040 KB
testcase_36 AC 441 ms
102,784 KB
testcase_37 AC 185 ms
78,976 KB
testcase_38 AC 153 ms
78,572 KB
testcase_39 AC 268 ms
92,672 KB
testcase_40 AC 333 ms
94,336 KB
testcase_41 AC 232 ms
96,416 KB
testcase_42 AC 241 ms
82,176 KB
testcase_43 AC 253 ms
85,376 KB
testcase_44 AC 119 ms
78,500 KB
testcase_45 AC 209 ms
86,288 KB
testcase_46 AC 77 ms
76,168 KB
testcase_47 AC 924 ms
160,768 KB
testcase_48 AC 75 ms
76,416 KB
testcase_49 AC 77 ms
76,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n, m, k = map(int, input().split())
edges = [[] for _ in range(300)]
for _ in range(m):
    u, v, c = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append((v, c))

cnt = [[0] * (k + 1) for _ in range(300)]
for i in range(300):
    cnt[i][0] = 1

for _ in range(n - 1):
    cnt2 = [[0] * (k + 1) for _ in range(300)]
    for i in range(300):
        for j in range(k + 1):
            for l, c in edges[i]:
                if j + c <= k:
                    cnt2[l][j + c] += cnt[i][j]
                    cnt2[l][j + c] %= MOD
    cnt = [row[:] for row in cnt2]
ans = 0
for i in range(300):
    ans += cnt[i][-1]
    ans %= MOD
print(ans)
        
0