結果

問題 No.1111 コード進行
ユーザー googol_S0googol_S0
提出日時 2020-07-10 21:38:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,145 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 297,068 KB
最終ジャッジ日時 2024-10-11 08:23:03
合計ジャッジ時間 8,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,776 KB
testcase_01 AC 43 ms
58,240 KB
testcase_02 AC 39 ms
52,724 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 49 ms
64,256 KB
testcase_06 AC 61 ms
69,248 KB
testcase_07 AC 63 ms
69,120 KB
testcase_08 AC 59 ms
67,268 KB
testcase_09 AC 57 ms
66,988 KB
testcase_10 AC 57 ms
70,528 KB
testcase_11 AC 55 ms
65,664 KB
testcase_12 AC 63 ms
69,656 KB
testcase_13 AC 55 ms
67,328 KB
testcase_14 AC 89 ms
83,328 KB
testcase_15 AC 56 ms
65,664 KB
testcase_16 AC 69 ms
71,680 KB
testcase_17 AC 54 ms
70,656 KB
testcase_18 AC 46 ms
62,336 KB
testcase_19 AC 47 ms
61,696 KB
testcase_20 AC 52 ms
65,280 KB
testcase_21 AC 48 ms
62,208 KB
testcase_22 AC 58 ms
73,216 KB
testcase_23 AC 59 ms
67,968 KB
testcase_24 AC 55 ms
67,712 KB
testcase_25 AC 76 ms
74,368 KB
testcase_26 AC 68 ms
70,144 KB
testcase_27 AC 55 ms
65,280 KB
testcase_28 AC 179 ms
182,392 KB
testcase_29 AC 116 ms
113,408 KB
testcase_30 AC 182 ms
136,696 KB
testcase_31 AC 73 ms
88,448 KB
testcase_32 AC 239 ms
135,168 KB
testcase_33 AC 248 ms
113,104 KB
testcase_34 AC 152 ms
156,032 KB
testcase_35 AC 186 ms
180,580 KB
testcase_36 AC 475 ms
181,212 KB
testcase_37 AC 187 ms
105,328 KB
testcase_38 AC 171 ms
90,360 KB
testcase_39 AC 347 ms
135,936 KB
testcase_40 AC 400 ms
176,896 KB
testcase_41 AC 234 ms
199,264 KB
testcase_42 AC 263 ms
127,732 KB
testcase_43 AC 254 ms
113,012 KB
testcase_44 AC 110 ms
91,136 KB
testcase_45 AC 197 ms
136,448 KB
testcase_46 AC 84 ms
83,344 KB
testcase_47 AC 1,145 ms
297,068 KB
testcase_48 AC 65 ms
73,068 KB
testcase_49 AC 84 ms
83,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
p,q,c=0,0,0
mod=10**9+7
G=[[] for i in range(300)]
for i in range(M):
  p,q,c=map(int,input().split())
  G[p-1].append((q-1,c))
DP=[[[0]*(K+1) for j in range(300)] for i in range(N+1)]
for i in range(300):
  DP[0][i][0]=1
for i in range(N):
  for j in range(300):
    for k in range(len(G[j])):
      for l in range(K+1):
        if l+G[j][k][1]<=K:
          DP[i+1][G[j][k][0]][l+G[j][k][1]]+=DP[i][j][l]
          DP[i+1][G[j][k][0]][l+G[j][k][1]]%=mod
P=0
for i in range(300):
  P+=DP[N-1][i][K]
print(P%mod)
0