結果

問題 No.1111 コード進行
ユーザー paruf4paruf4
提出日時 2020-07-11 17:42:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 745 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 295,300 KB
最終ジャッジ日時 2024-10-13 06:58:01
合計ジャッジ時間 6,930 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,728 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 43 ms
52,480 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 45 ms
61,440 KB
testcase_06 AC 53 ms
65,920 KB
testcase_07 AC 53 ms
66,048 KB
testcase_08 AC 52 ms
63,872 KB
testcase_09 AC 52 ms
64,512 KB
testcase_10 AC 51 ms
67,712 KB
testcase_11 AC 50 ms
63,488 KB
testcase_12 AC 55 ms
66,944 KB
testcase_13 AC 49 ms
64,512 KB
testcase_14 AC 61 ms
69,632 KB
testcase_15 AC 49 ms
62,828 KB
testcase_16 AC 57 ms
67,840 KB
testcase_17 AC 50 ms
68,352 KB
testcase_18 AC 44 ms
60,544 KB
testcase_19 AC 42 ms
59,008 KB
testcase_20 AC 47 ms
62,676 KB
testcase_21 AC 44 ms
60,544 KB
testcase_22 AC 52 ms
70,144 KB
testcase_23 AC 51 ms
64,640 KB
testcase_24 AC 49 ms
65,280 KB
testcase_25 AC 61 ms
71,552 KB
testcase_26 AC 57 ms
66,688 KB
testcase_27 AC 50 ms
62,208 KB
testcase_28 AC 190 ms
182,400 KB
testcase_29 AC 105 ms
113,280 KB
testcase_30 AC 152 ms
136,448 KB
testcase_31 AC 52 ms
73,344 KB
testcase_32 AC 197 ms
135,008 KB
testcase_33 AC 177 ms
112,896 KB
testcase_34 AC 125 ms
136,832 KB
testcase_35 AC 181 ms
180,156 KB
testcase_36 AC 344 ms
180,824 KB
testcase_37 AC 126 ms
89,728 KB
testcase_38 AC 134 ms
89,580 KB
testcase_39 AC 247 ms
135,680 KB
testcase_40 AC 280 ms
158,848 KB
testcase_41 AC 193 ms
182,272 KB
testcase_42 AC 182 ms
112,640 KB
testcase_43 AC 184 ms
112,768 KB
testcase_44 AC 92 ms
90,752 KB
testcase_45 AC 163 ms
136,320 KB
testcase_46 AC 58 ms
70,656 KB
testcase_47 AC 745 ms
295,300 KB
testcase_48 AC 59 ms
70,912 KB
testcase_49 AC 61 ms
71,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
P=[0]*301
Q=[0]*301
C=[0]*301
for i in range(M):
  p,q,c=map(int,input().split())
  P[i]=p-1
  Q[i]=q-1
  C[i]=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

for i in range(N-1):
  for j in range(M):
    p=P[j]
    q=Q[j]
    c=C[j]
    for cost in range(K+1):
      if cost+c>K:continue
      dp[i+1][q][cost+c]+=dp[i][p][cost]
      dp[i+1][q][cost+c]%=mod
ans=0
for i in range(300):
  ans+=dp[N-1][i][K]
  ans%=mod
print(ans)






0