結果

問題 No.1887 K Consecutive Ks (Easy)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-30 23:00:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 581 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 138,112 KB
最終ジャッジ日時 2024-11-15 14:44:28
合計ジャッジ時間 4,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 359 ms
138,112 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 35 ms
51,584 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 39 ms
57,984 KB
testcase_08 AC 41 ms
59,392 KB
testcase_09 AC 45 ms
62,848 KB
testcase_10 AC 48 ms
64,564 KB
testcase_11 AC 101 ms
89,524 KB
testcase_12 AC 67 ms
70,272 KB
testcase_13 AC 345 ms
137,984 KB
testcase_14 AC 354 ms
137,984 KB
testcase_15 AC 356 ms
137,980 KB
testcase_16 AC 298 ms
115,132 KB
testcase_17 AC 226 ms
114,944 KB
testcase_18 AC 366 ms
137,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
mod = 998244353
dp = [[0]*(m+1) for i in range(n+1)]
dps = [0]*(m+1)
for i in range(2,m+1):
    dp[1][i] = 1
    dps[i] = 1



for i in range(2,n+1):
    s = sum(dps)%mod
    for j in range(2,m+1):
        dp[i][j] = (s - dps[j])%mod
        dps[j] += dp[i][j] - dp[max(0,i-j+1)][j]
        dps[j] %= mod

ans = pow(m,n,mod)-sum(dps)%mod
print(ans%mod)
0