結果

問題 No.1887 K Consecutive Ks (Easy)
ユーザー miscalcmiscalc
提出日時 2022-03-06 17:24:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 135,040 KB
最終ジャッジ日時 2024-07-21 03:10:56
合計ジャッジ時間 4,694 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 453 ms
134,912 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 43 ms
59,264 KB
testcase_08 AC 43 ms
59,648 KB
testcase_09 AC 46 ms
62,336 KB
testcase_10 AC 53 ms
64,512 KB
testcase_11 AC 108 ms
89,216 KB
testcase_12 AC 85 ms
70,400 KB
testcase_13 AC 412 ms
135,040 KB
testcase_14 AC 427 ms
135,040 KB
testcase_15 AC 420 ms
134,912 KB
testcase_16 AC 342 ms
112,000 KB
testcase_17 AC 262 ms
112,640 KB
testcase_18 AC 432 ms
134,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
mod = 998244353

dp = [[0 for j in range(m + 1)] for i in range(n + 1)]
for i in range(n + 1):
  dp[i][1] = 1
for j in range(1, m + 1):
  dp[0][j] = 1
for i in range(1, n + 1):
  for j in range(2, m + 1):
    dp[i][j] += dp[i][j - 1]
    dp[i][j] += dp[i - 1][m]
    if i - j >= 0:
      dp[i][j] -= dp[i - j][j - 1]
      dp[i][j] += dp[i - j][j]
      dp[i][j] -= dp[i - j][m]
    dp[i][j] %= mod

ans = (pow(m, n, mod) - (dp[n][m] - dp[n - 1][m])) % mod
print(ans)
0