結果

問題 No.1111 コード進行
ユーザー takakintakakin
提出日時 2020-07-10 21:48:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 758 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 297,216 KB
最終ジャッジ日時 2024-10-11 08:49:13
合計ジャッジ時間 7,750 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,984 KB
testcase_01 AC 43 ms
58,240 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 47 ms
60,800 KB
testcase_06 AC 59 ms
67,072 KB
testcase_07 AC 66 ms
68,608 KB
testcase_08 AC 58 ms
64,384 KB
testcase_09 AC 56 ms
64,640 KB
testcase_10 AC 61 ms
69,248 KB
testcase_11 AC 56 ms
63,360 KB
testcase_12 AC 62 ms
67,712 KB
testcase_13 AC 55 ms
64,640 KB
testcase_14 AC 71 ms
71,680 KB
testcase_15 AC 52 ms
62,208 KB
testcase_16 AC 64 ms
68,608 KB
testcase_17 AC 54 ms
66,944 KB
testcase_18 AC 45 ms
59,904 KB
testcase_19 AC 41 ms
53,248 KB
testcase_20 AC 53 ms
63,104 KB
testcase_21 AC 46 ms
58,624 KB
testcase_22 AC 62 ms
71,040 KB
testcase_23 AC 58 ms
65,408 KB
testcase_24 AC 56 ms
65,024 KB
testcase_25 AC 75 ms
73,856 KB
testcase_26 AC 68 ms
68,352 KB
testcase_27 AC 50 ms
61,312 KB
testcase_28 AC 190 ms
182,016 KB
testcase_29 AC 112 ms
113,408 KB
testcase_30 AC 188 ms
136,960 KB
testcase_31 AC 58 ms
74,092 KB
testcase_32 AC 255 ms
135,424 KB
testcase_33 AC 252 ms
113,664 KB
testcase_34 AC 137 ms
136,832 KB
testcase_35 AC 189 ms
180,864 KB
testcase_36 AC 357 ms
181,504 KB
testcase_37 AC 138 ms
90,624 KB
testcase_38 AC 148 ms
90,496 KB
testcase_39 AC 354 ms
136,576 KB
testcase_40 AC 353 ms
177,280 KB
testcase_41 AC 206 ms
182,528 KB
testcase_42 AC 197 ms
113,024 KB
testcase_43 AC 228 ms
113,664 KB
testcase_44 AC 101 ms
91,264 KB
testcase_45 AC 177 ms
136,704 KB
testcase_46 AC 67 ms
71,168 KB
testcase_47 AC 758 ms
297,216 KB
testcase_48 AC 65 ms
69,632 KB
testcase_49 AC 67 ms
70,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,m,k=map(int,input().split())
mod=10**9+7
PQ=[[int(i) for i in input().split()] for _ in range(m)]

DP=[[[0]*(k+1) for i in range(301)] for j in range(n+1)]

for p,q,c in PQ:
  if c<=k:
    DP[2][q][c]+=1
for i in range(2,n):
  for p,q,c in PQ:
    for j in range(k+1-c):
      DP[i+1][q][j+c]+=DP[i][p][j]
      if DP[i+1][q][j+c]>mod:
        DP[i+1][q][j+c]=DP[i+1][q][j+c]%mod
ans=0
for i in range(301):
  ans=(ans+DP[n][i][k])%mod
print(ans)
0