結果

問題 No.1887 K Consecutive Ks (Easy)
ユーザー iorioniorion
提出日時 2022-03-25 23:50:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 206,868 KB
最終ジャッジ日時 2024-10-14 08:07:13
合計ジャッジ時間 4,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 440 ms
206,868 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 41 ms
58,240 KB
testcase_08 AC 44 ms
59,520 KB
testcase_09 AC 61 ms
69,376 KB
testcase_10 AC 61 ms
69,888 KB
testcase_11 AC 113 ms
93,440 KB
testcase_12 AC 97 ms
86,400 KB
testcase_13 AC 422 ms
206,620 KB
testcase_14 AC 434 ms
206,724 KB
testcase_15 AC 431 ms
206,564 KB
testcase_16 AC 353 ms
173,308 KB
testcase_17 AC 287 ms
160,768 KB
testcase_18 AC 434 ms
206,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0] * (m + 1) for _ in range(n + 1)] # dp[i][k] = # of length i array ending j meeting the conditions
no = [[0] * (m + 1) for _ in range(n + 1)] # no[i][j] = # of length i array ending j not meeting the conditions
no[0][0] = 1

for i in range(n):
    no_sum = sum(no[i]) % MOD
    for k in range(1, min(m + 1, n - i + 1)):
        dp[i + k][k] = (dp[i + k][k] + no_sum - no[i][k]) % MOD
    for k in range(2, m + 1):
        no[i + 1][k] = (no_sum - dp[i + 1][k]) % MOD

ans = 0
for i in range(1, n + 1):
    ans += sum(dp[i]) * pow(m, n - i, MOD)
    ans %= MOD
print(ans)
0