結果

問題 No.1111 コード進行
ユーザー O2MTO2MT
提出日時 2021-06-09 16:11:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 296,956 KB
最終ジャッジ日時 2024-11-28 04:34:24
合計ジャッジ時間 8,527 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,416 KB
testcase_01 AC 48 ms
60,672 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 44 ms
52,480 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 57 ms
68,736 KB
testcase_08 AC 54 ms
65,024 KB
testcase_09 WA -
testcase_10 AC 59 ms
70,784 KB
testcase_11 AC 54 ms
64,256 KB
testcase_12 WA -
testcase_13 AC 57 ms
66,304 KB
testcase_14 WA -
testcase_15 AC 53 ms
63,488 KB
testcase_16 AC 63 ms
70,272 KB
testcase_17 AC 57 ms
71,680 KB
testcase_18 AC 50 ms
63,872 KB
testcase_19 AC 47 ms
60,032 KB
testcase_20 AC 51 ms
63,616 KB
testcase_21 AC 50 ms
63,104 KB
testcase_22 AC 78 ms
85,604 KB
testcase_23 AC 56 ms
66,944 KB
testcase_24 AC 55 ms
67,200 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 235 ms
177,024 KB
testcase_29 AC 142 ms
113,152 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 200 ms
156,032 KB
testcase_35 AC 250 ms
180,864 KB
testcase_36 AC 556 ms
175,872 KB
testcase_37 AC 160 ms
104,832 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 269 ms
193,280 KB
testcase_42 AC 307 ms
127,616 KB
testcase_43 WA -
testcase_44 AC 135 ms
97,536 KB
testcase_45 AC 270 ms
151,672 KB
testcase_46 WA -
testcase_47 AC 995 ms
296,956 KB
testcase_48 AC 95 ms
83,200 KB
testcase_49 AC 85 ms
81,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())
l = []
MOD = 10**9+7
NUM = 301
for _ in range(M):
  p,q,c = map(int,input().split())
  l.append((p,q,c))
dp = [[[0 for _ in range(K+1)] for _ in range(NUM)] for _ in range(N+1)]
for i in range(NUM):
  dp[0][i][0] = 1
for i in range(N):
  for k in range(K+1):
    for j in range(M):
      p,q,c = l[j]
      if k+c > K:
        break
      dp[i+1][q][k+c] += dp[i][p][k]
      dp[i+1][q][k+c] %= MOD

ans = 0
for i in range(NUM):
  ans += dp[N][i][K]
print(ans%MOD)
0