結果

問題 No.1111 コード進行
ユーザー prd_xxxprd_xxx
提出日時 2020-07-10 22:19:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,087 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 295,632 KB
最終ジャッジ日時 2024-10-11 09:36:05
合計ジャッジ時間 9,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,172 KB
testcase_01 AC 39 ms
53,192 KB
testcase_02 AC 37 ms
53,412 KB
testcase_03 AC 37 ms
53,484 KB
testcase_04 AC 37 ms
53,264 KB
testcase_05 AC 42 ms
55,764 KB
testcase_06 AC 49 ms
66,300 KB
testcase_07 AC 51 ms
66,552 KB
testcase_08 AC 44 ms
62,316 KB
testcase_09 AC 51 ms
66,408 KB
testcase_10 AC 44 ms
65,580 KB
testcase_11 AC 42 ms
61,104 KB
testcase_12 AC 53 ms
69,084 KB
testcase_13 AC 42 ms
62,360 KB
testcase_14 AC 63 ms
73,772 KB
testcase_15 AC 42 ms
59,676 KB
testcase_16 AC 51 ms
68,844 KB
testcase_17 AC 43 ms
65,256 KB
testcase_18 AC 42 ms
61,028 KB
testcase_19 AC 38 ms
53,596 KB
testcase_20 AC 42 ms
61,020 KB
testcase_21 AC 42 ms
58,708 KB
testcase_22 AC 44 ms
67,796 KB
testcase_23 AC 43 ms
62,312 KB
testcase_24 AC 47 ms
64,732 KB
testcase_25 AC 70 ms
84,604 KB
testcase_26 AC 85 ms
80,576 KB
testcase_27 AC 40 ms
55,536 KB
testcase_28 AC 152 ms
181,428 KB
testcase_29 AC 95 ms
113,260 KB
testcase_30 AC 338 ms
149,808 KB
testcase_31 AC 73 ms
87,916 KB
testcase_32 AC 489 ms
144,252 KB
testcase_33 AC 588 ms
120,888 KB
testcase_34 AC 117 ms
136,772 KB
testcase_35 AC 139 ms
158,284 KB
testcase_36 AC 168 ms
181,528 KB
testcase_37 AC 84 ms
90,316 KB
testcase_38 AC 315 ms
100,340 KB
testcase_39 AC 1,005 ms
160,280 KB
testcase_40 AC 1,087 ms
219,488 KB
testcase_41 AC 157 ms
181,468 KB
testcase_42 AC 108 ms
112,944 KB
testcase_43 AC 814 ms
150,056 KB
testcase_44 AC 66 ms
90,368 KB
testcase_45 AC 116 ms
135,604 KB
testcase_46 AC 62 ms
73,692 KB
testcase_47 AC 296 ms
295,632 KB
testcase_48 AC 83 ms
83,112 KB
testcase_49 AC 49 ms
67,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N,M,K = map(int,input().split())
PQC = [tuple(map(int,input().split())) for i in range(M)]
es = [[] for _ in range(300)]
for p,q,c in PQC:
    p,q = p-1,q-1
    es[p].append((q,c))

MOD = 10**9+7
dp = [[[0]*(K+1) for _ in range(300)] for _ in range(N)]
for i in range(300):
    dp[0][i][0] = 1

st = set([(i,0) for i in range(300)])
for i in range(N-1):
    st2 = set()
    for p,c in st:
        for np,dc in es[p]:
            if c+dc > K: continue
            dp[i+1][np][c+dc] += dp[i][p][c]
            dp[i+1][np][c+dc] %= MOD
            st2.add((np,c+dc))
    st = st2
print(sum(a[-1] for a in dp[-1]) % MOD)
0