結果

問題 No.1111 コード進行
ユーザー O2MTO2MT
提出日時 2021-06-09 16:30:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 829 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 295,168 KB
最終ジャッジ日時 2024-11-28 08:05:49
合計ジャッジ時間 8,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
59,648 KB
testcase_01 AC 49 ms
58,368 KB
testcase_02 AC 44 ms
51,968 KB
testcase_03 AC 43 ms
52,608 KB
testcase_04 AC 44 ms
52,096 KB
testcase_05 AC 51 ms
60,160 KB
testcase_06 AC 68 ms
68,480 KB
testcase_07 AC 76 ms
71,680 KB
testcase_08 AC 72 ms
68,480 KB
testcase_09 AC 64 ms
65,536 KB
testcase_10 AC 70 ms
72,192 KB
testcase_11 AC 67 ms
66,688 KB
testcase_12 AC 74 ms
69,248 KB
testcase_13 AC 65 ms
66,432 KB
testcase_14 AC 80 ms
72,832 KB
testcase_15 AC 62 ms
66,176 KB
testcase_16 AC 75 ms
70,400 KB
testcase_17 AC 68 ms
71,680 KB
testcase_18 AC 55 ms
63,360 KB
testcase_19 AC 49 ms
58,752 KB
testcase_20 AC 59 ms
63,744 KB
testcase_21 AC 57 ms
62,464 KB
testcase_22 AC 71 ms
73,472 KB
testcase_23 AC 65 ms
67,840 KB
testcase_24 AC 65 ms
67,072 KB
testcase_25 AC 97 ms
83,584 KB
testcase_26 AC 75 ms
69,632 KB
testcase_27 AC 59 ms
63,104 KB
testcase_28 AC 231 ms
176,896 KB
testcase_29 AC 146 ms
112,768 KB
testcase_30 AC 209 ms
140,672 KB
testcase_31 AC 85 ms
86,656 KB
testcase_32 AC 252 ms
142,592 KB
testcase_33 AC 203 ms
103,168 KB
testcase_34 AC 199 ms
154,880 KB
testcase_35 AC 237 ms
166,272 KB
testcase_36 AC 413 ms
175,488 KB
testcase_37 AC 178 ms
104,576 KB
testcase_38 AC 168 ms
93,952 KB
testcase_39 AC 309 ms
140,672 KB
testcase_40 AC 376 ms
172,672 KB
testcase_41 AC 285 ms
193,792 KB
testcase_42 AC 241 ms
126,592 KB
testcase_43 AC 228 ms
116,864 KB
testcase_44 AC 127 ms
96,896 KB
testcase_45 AC 237 ms
150,656 KB
testcase_46 AC 103 ms
83,072 KB
testcase_47 AC 829 ms
295,168 KB
testcase_48 AC 101 ms
82,816 KB
testcase_49 AC 103 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())
l = []
MOD = 10**9+7
NUM = 300

for _ in range(M):
  p,q,c = map(int,input().split())
  p -= 1
  q -= 1
  l.append((p,q,c))

dp = [[[0 for _ in range(K+1)] for _ in range(NUM)] for _ in range(N)]

for i in range(NUM):
  dp[0][i][0] = 1
for i in range(N-1):
  for j in range(M):
    p,q,c = l[j]
    for k in range(K+1-c):
      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-1][i][K]

print(ans%MOD)
0