結果

問題 No.1887 K Consecutive Ks (Easy)
ユーザー 👑 rin204rin204
提出日時 2022-03-25 22:54:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 138,236 KB
最終ジャッジ日時 2024-10-14 06:57:07
合計ジャッジ時間 4,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,336 KB
testcase_01 AC 38 ms
52,396 KB
testcase_02 AC 398 ms
137,952 KB
testcase_03 AC 37 ms
53,008 KB
testcase_04 AC 37 ms
52,268 KB
testcase_05 AC 37 ms
52,872 KB
testcase_06 AC 37 ms
52,368 KB
testcase_07 AC 42 ms
58,716 KB
testcase_08 AC 46 ms
60,212 KB
testcase_09 AC 44 ms
62,068 KB
testcase_10 AC 50 ms
63,484 KB
testcase_11 AC 106 ms
89,252 KB
testcase_12 AC 73 ms
68,352 KB
testcase_13 AC 391 ms
138,236 KB
testcase_14 AC 404 ms
137,984 KB
testcase_15 AC 406 ms
138,224 KB
testcase_16 AC 325 ms
115,072 KB
testcase_17 AC 243 ms
115,152 KB
testcase_18 AC 406 ms
137,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

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

dp = [[0] * (m + 1) for _ in range(n + 1)]
dp[0][0] = 1
tot = [0] * (n + 1)
tot[0] = 1
powm = [1]
for _ in range(n):
    powm.append(powm[-1] * m % MOD)

ans = 0
for i in range(1, n + 1):
    ans += tot[i - 1] * powm[n - i]
    ans %= MOD
    for j in range(2, m + 1):
        dp[i][j] = tot[i - 1]
        if i >= j:
            dp[i][j] -= tot[i - j] - dp[i - j][j]
            ans += (tot[i - j] - dp[i - j][j]) * powm[n - i]
            ans %= MOD
        dp[i][j] %= MOD
        tot[i] += dp[i][j]
        tot[i] %= MOD

print(ans)
0