結果

問題 No.1111 コード進行
ユーザー convexineqconvexineq
提出日時 2021-05-11 02:15:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 599 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,952 KB
実行使用メモリ 91,092 KB
最終ジャッジ日時 2024-09-21 08:07:24
合計ジャッジ時間 6,139 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,512 KB
testcase_01 AC 44 ms
59,632 KB
testcase_02 AC 38 ms
53,544 KB
testcase_03 AC 40 ms
53,564 KB
testcase_04 AC 38 ms
52,828 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 58 ms
69,552 KB
testcase_08 AC 52 ms
64,028 KB
testcase_09 WA -
testcase_10 AC 53 ms
68,312 KB
testcase_11 AC 49 ms
64,104 KB
testcase_12 WA -
testcase_13 AC 50 ms
65,264 KB
testcase_14 WA -
testcase_15 AC 49 ms
63,356 KB
testcase_16 AC 59 ms
70,976 KB
testcase_17 AC 51 ms
68,588 KB
testcase_18 AC 50 ms
62,532 KB
testcase_19 AC 44 ms
61,352 KB
testcase_20 AC 48 ms
63,016 KB
testcase_21 AC 46 ms
62,300 KB
testcase_22 AC 53 ms
70,512 KB
testcase_23 AC 51 ms
65,204 KB
testcase_24 AC 54 ms
67,224 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 48 ms
62,000 KB
testcase_28 AC 108 ms
82,276 KB
testcase_29 AC 83 ms
76,996 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 103 ms
79,908 KB
testcase_35 AC 111 ms
79,904 KB
testcase_36 AC 138 ms
82,328 KB
testcase_37 AC 94 ms
76,836 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 114 ms
81,976 KB
testcase_42 AC 87 ms
77,088 KB
testcase_43 WA -
testcase_44 AC 67 ms
76,424 KB
testcase_45 AC 91 ms
78,256 KB
testcase_46 AC 67 ms
72,992 KB
testcase_47 AC 167 ms
91,092 KB
testcase_48 AC 62 ms
73,128 KB
testcase_49 AC 57 ms
71,680 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