結果

問題 No.1111 コード進行
ユーザー paruf4paruf4
提出日時 2020-07-11 17:39:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 295,728 KB
最終ジャッジ日時 2024-10-13 06:50:46
合計ジャッジ時間 6,390 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,324 KB
testcase_01 AC 40 ms
53,184 KB
testcase_02 AC 36 ms
52,876 KB
testcase_03 AC 37 ms
52,464 KB
testcase_04 AC 38 ms
53,772 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 51 ms
65,320 KB
testcase_09 WA -
testcase_10 AC 51 ms
69,600 KB
testcase_11 AC 47 ms
65,448 KB
testcase_12 WA -
testcase_13 AC 48 ms
64,968 KB
testcase_14 WA -
testcase_15 AC 47 ms
63,376 KB
testcase_16 AC 53 ms
67,472 KB
testcase_17 AC 49 ms
69,284 KB
testcase_18 AC 42 ms
61,284 KB
testcase_19 AC 40 ms
59,404 KB
testcase_20 AC 44 ms
64,136 KB
testcase_21 AC 42 ms
60,516 KB
testcase_22 AC 49 ms
71,360 KB
testcase_23 AC 46 ms
66,236 KB
testcase_24 AC 47 ms
66,300 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 46 ms
63,784 KB
testcase_28 AC 155 ms
182,076 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 115 ms
137,024 KB
testcase_35 AC 158 ms
179,912 KB
testcase_36 AC 317 ms
181,100 KB
testcase_37 AC 120 ms
89,860 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 176 ms
182,856 KB
testcase_42 AC 167 ms
112,688 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 158 ms
136,328 KB
testcase_46 AC 57 ms
71,348 KB
testcase_47 AC 680 ms
295,728 KB
testcase_48 AC 54 ms
71,708 KB
testcase_49 WA -
権限があれば一括ダウンロードができます

ソースコード

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][q][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