結果

問題 No.1111 コード進行
ユーザー 👑 rin204rin204
提出日時 2022-07-04 16:02:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 834 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 160,896 KB
最終ジャッジ日時 2024-05-08 05:28:32
合計ジャッジ時間 8,272 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,264 KB
testcase_01 AC 43 ms
59,264 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 60 ms
70,016 KB
testcase_06 AC 81 ms
78,592 KB
testcase_07 AC 80 ms
77,824 KB
testcase_08 AC 70 ms
71,296 KB
testcase_09 AC 73 ms
74,752 KB
testcase_10 AC 81 ms
77,824 KB
testcase_11 AC 67 ms
70,400 KB
testcase_12 AC 86 ms
78,592 KB
testcase_13 AC 86 ms
78,208 KB
testcase_14 AC 102 ms
79,616 KB
testcase_15 AC 71 ms
71,168 KB
testcase_16 AC 93 ms
78,592 KB
testcase_17 AC 81 ms
78,080 KB
testcase_18 AC 63 ms
67,840 KB
testcase_19 AC 52 ms
62,464 KB
testcase_20 AC 66 ms
70,528 KB
testcase_21 AC 53 ms
62,976 KB
testcase_22 AC 89 ms
78,464 KB
testcase_23 AC 73 ms
74,240 KB
testcase_24 AC 79 ms
77,824 KB
testcase_25 AC 94 ms
78,080 KB
testcase_26 AC 85 ms
77,312 KB
testcase_27 AC 68 ms
69,888 KB
testcase_28 AC 173 ms
94,592 KB
testcase_29 AC 123 ms
80,800 KB
testcase_30 AC 169 ms
89,216 KB
testcase_31 AC 88 ms
78,720 KB
testcase_32 AC 191 ms
82,560 KB
testcase_33 AC 239 ms
89,728 KB
testcase_34 AC 149 ms
88,448 KB
testcase_35 AC 167 ms
87,296 KB
testcase_36 AC 417 ms
102,400 KB
testcase_37 AC 175 ms
78,976 KB
testcase_38 AC 152 ms
78,632 KB
testcase_39 AC 250 ms
92,672 KB
testcase_40 AC 316 ms
94,464 KB
testcase_41 AC 211 ms
97,632 KB
testcase_42 AC 219 ms
82,560 KB
testcase_43 AC 228 ms
85,120 KB
testcase_44 AC 120 ms
78,696 KB
testcase_45 AC 189 ms
86,160 KB
testcase_46 AC 81 ms
76,288 KB
testcase_47 AC 834 ms
160,896 KB
testcase_48 AC 75 ms
76,032 KB
testcase_49 AC 79 ms
76,032 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