結果

問題 No.2388 At Least K-Characters
ユーザー 👑 seekworserseekworser
提出日時 2023-07-17 22:59:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 4,000 ms
コード長 976 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 81,784 KB
実行使用メモリ 80,804 KB
最終ジャッジ日時 2024-07-05 03:39:23
合計ジャッジ時間 8,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 47 ms
60,544 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 38 ms
51,584 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 37 ms
52,736 KB
testcase_13 AC 61 ms
66,944 KB
testcase_14 AC 61 ms
66,944 KB
testcase_15 AC 60 ms
67,584 KB
testcase_16 AC 286 ms
80,540 KB
testcase_17 AC 291 ms
80,156 KB
testcase_18 AC 286 ms
80,412 KB
testcase_19 AC 282 ms
80,512 KB
testcase_20 AC 296 ms
80,532 KB
testcase_21 AC 317 ms
80,720 KB
testcase_22 AC 312 ms
80,404 KB
testcase_23 AC 316 ms
80,612 KB
testcase_24 AC 299 ms
80,532 KB
testcase_25 AC 285 ms
80,332 KB
testcase_26 AC 305 ms
80,804 KB
testcase_27 AC 299 ms
80,408 KB
testcase_28 AC 310 ms
80,408 KB
testcase_29 AC 303 ms
80,156 KB
testcase_30 AC 294 ms
80,408 KB
testcase_31 AC 291 ms
80,348 KB
testcase_32 AC 288 ms
80,736 KB
testcase_33 AC 282 ms
80,156 KB
testcase_34 AC 311 ms
80,152 KB
testcase_35 AC 318 ms
80,484 KB
testcase_36 AC 304 ms
80,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
s = [ord(si) - ord('a') for si in input()]

seen = [False] * 27
dp = [0] * 27
dp[0] = 1
used = 0
ans = 0

for i in range(m):
    dpn = [0] * 27
    for j in range(27):
        dpj = dp[j]
        if i < n and j == used:
            u = 0
            for l in range(s[i]):
                if seen[l]:
                    u += 1
            dpn[j] += u
            if j+1 <= 26:
                dpn[j+1] += s[i] - u
            if seen[s[i]]:
                dpn[j] += 1
            else:
                dpn[j+1] += 1
            dpj -= 1
        if i == n and j == used:
            dpj -= 1
        dpn[j] += dpj * j
        if j + 1 <= 26:
            dpn[j+1] += dpj * (26 - j)
    for j in range(27):
        dpn[j] %= 998244353
    dp = dpn
    if i < n and not seen[s[i]]:
        used += 1
        seen[s[i]] = True
    for j in range(k, 27):
        ans += dp[j]
    ans %= 998244353

if used >= k:
    ans -= 1
print(ans % 998244353)
0