結果

問題 No.1111 コード進行
ユーザー convexineqconvexineq
提出日時 2021-05-11 02:17:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 91,000 KB
最終ジャッジ日時 2024-09-21 08:09:07
合計ジャッジ時間 5,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,752 KB
testcase_01 AC 45 ms
58,624 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 48 ms
61,312 KB
testcase_06 AC 61 ms
67,840 KB
testcase_07 AC 62 ms
68,096 KB
testcase_08 AC 55 ms
63,488 KB
testcase_09 AC 64 ms
65,536 KB
testcase_10 AC 59 ms
67,456 KB
testcase_11 AC 58 ms
63,104 KB
testcase_12 AC 66 ms
69,248 KB
testcase_13 AC 54 ms
63,872 KB
testcase_14 AC 71 ms
71,552 KB
testcase_15 AC 53 ms
62,720 KB
testcase_16 AC 66 ms
68,992 KB
testcase_17 AC 57 ms
67,456 KB
testcase_18 AC 53 ms
62,208 KB
testcase_19 AC 47 ms
59,392 KB
testcase_20 AC 50 ms
62,080 KB
testcase_21 AC 46 ms
60,416 KB
testcase_22 AC 52 ms
69,504 KB
testcase_23 AC 50 ms
64,128 KB
testcase_24 AC 55 ms
66,944 KB
testcase_25 AC 65 ms
73,856 KB
testcase_26 AC 61 ms
69,888 KB
testcase_27 AC 47 ms
61,696 KB
testcase_28 AC 106 ms
81,536 KB
testcase_29 AC 81 ms
76,672 KB
testcase_30 AC 121 ms
81,408 KB
testcase_31 AC 65 ms
76,672 KB
testcase_32 AC 144 ms
78,464 KB
testcase_33 AC 143 ms
78,080 KB
testcase_34 AC 101 ms
80,256 KB
testcase_35 AC 104 ms
79,872 KB
testcase_36 AC 117 ms
82,432 KB
testcase_37 AC 90 ms
76,288 KB
testcase_38 AC 124 ms
76,416 KB
testcase_39 AC 192 ms
81,324 KB
testcase_40 AC 217 ms
83,328 KB
testcase_41 AC 113 ms
81,664 KB
testcase_42 AC 86 ms
76,800 KB
testcase_43 AC 156 ms
79,488 KB
testcase_44 AC 64 ms
76,288 KB
testcase_45 AC 88 ms
78,592 KB
testcase_46 AC 63 ms
72,448 KB
testcase_47 AC 168 ms
91,000 KB
testcase_48 AC 61 ms
72,448 KB
testcase_49 AC 58 ms
71,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 300
n,m,k = map(int,input().split())
g = [[] for _ in range(N)]
for _ in range(m):
    p,q,c = map(int,input().split())
    g[p-1].append((q-1,c))

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

for _ in range(n-1):
    ndp = [[0]*(k+1) for _ in range(N)]
    for i in range(N):
        for j,v in enumerate(dp[i]):
            if v==0: continue
            for q,c in g[i]:
                if j+c > k: continue
                ndp[q][j+c] += v
                ndp[q][j+c] %= MOD
    dp = ndp

ans = 0
for i in range(N):
    ans += dp[i][-1]
print(ans%MOD)
0