結果

問題 No.1111 コード進行
ユーザー convexineqconvexineq
提出日時 2021-05-11 02:12:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 569 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 132,912 KB
最終ジャッジ日時 2024-09-21 08:04:28
合計ジャッジ時間 6,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,620 KB
testcase_01 AC 38 ms
53,500 KB
testcase_02 AC 37 ms
53,308 KB
testcase_03 WA -
testcase_04 AC 36 ms
53,072 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 46 ms
64,964 KB
testcase_08 AC 43 ms
62,148 KB
testcase_09 WA -
testcase_10 AC 46 ms
67,540 KB
testcase_11 AC 45 ms
62,444 KB
testcase_12 WA -
testcase_13 AC 43 ms
63,928 KB
testcase_14 WA -
testcase_15 AC 43 ms
61,348 KB
testcase_16 AC 47 ms
66,584 KB
testcase_17 AC 54 ms
71,028 KB
testcase_18 AC 41 ms
61,480 KB
testcase_19 AC 38 ms
54,600 KB
testcase_20 AC 46 ms
65,120 KB
testcase_21 AC 41 ms
59,972 KB
testcase_22 AC 48 ms
72,484 KB
testcase_23 AC 48 ms
67,836 KB
testcase_24 AC 50 ms
67,524 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 37 ms
54,188 KB
testcase_28 AC 102 ms
81,148 KB
testcase_29 AC 117 ms
78,876 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 96 ms
79,588 KB
testcase_35 AC 127 ms
80,068 KB
testcase_36 AC 244 ms
87,276 KB
testcase_37 AC 115 ms
77,364 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 149 ms
83,456 KB
testcase_42 AC 145 ms
78,248 KB
testcase_43 WA -
testcase_44 AC 80 ms
76,672 KB
testcase_45 AC 126 ms
79,944 KB
testcase_46 AC 62 ms
76,032 KB
testcase_47 AC 771 ms
132,912 KB
testcase_48 AC 56 ms
72,424 KB
testcase_49 AC 66 ms
73,500 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]):
            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