結果

問題 No.2388 At Least K-Characters
ユーザー ああいいああいい
提出日時 2023-07-22 18:37:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 810 ms / 4,000 ms
コード長 902 bytes
コンパイル時間 713 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 220,160 KB
最終ジャッジ日時 2024-07-05 04:18:25
合計ジャッジ時間 17,112 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,896 KB
testcase_01 AC 36 ms
52,444 KB
testcase_02 AC 47 ms
61,804 KB
testcase_03 AC 36 ms
52,608 KB
testcase_04 AC 37 ms
52,500 KB
testcase_05 AC 37 ms
52,640 KB
testcase_06 AC 38 ms
52,912 KB
testcase_07 AC 38 ms
53,260 KB
testcase_08 AC 41 ms
52,824 KB
testcase_09 AC 39 ms
53,088 KB
testcase_10 AC 37 ms
53,016 KB
testcase_11 AC 39 ms
54,392 KB
testcase_12 AC 38 ms
52,972 KB
testcase_13 AC 58 ms
66,352 KB
testcase_14 AC 60 ms
67,512 KB
testcase_15 AC 61 ms
68,812 KB
testcase_16 AC 576 ms
219,896 KB
testcase_17 AC 761 ms
219,880 KB
testcase_18 AC 550 ms
219,780 KB
testcase_19 AC 554 ms
220,160 KB
testcase_20 AC 643 ms
219,668 KB
testcase_21 AC 810 ms
219,892 KB
testcase_22 AC 784 ms
219,628 KB
testcase_23 AC 790 ms
219,908 KB
testcase_24 AC 703 ms
220,016 KB
testcase_25 AC 543 ms
219,776 KB
testcase_26 AC 735 ms
219,508 KB
testcase_27 AC 721 ms
219,652 KB
testcase_28 AC 776 ms
219,524 KB
testcase_29 AC 671 ms
220,040 KB
testcase_30 AC 655 ms
219,776 KB
testcase_31 AC 601 ms
220,040 KB
testcase_32 AC 555 ms
220,040 KB
testcase_33 AC 549 ms
219,660 KB
testcase_34 AC 763 ms
219,908 KB
testcase_35 AC 796 ms
219,636 KB
testcase_36 AC 729 ms
219,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())
S = input()
now = 0
dat = [0] * 26
P = 998244353

dp = [[0] * 27 for _ in range(M + 1)]

ans = 0
for i in range(N):
    c = ord(S[i]) - ord('a')
    for j in range(c):
        if dat[j] == 0:
            dp[i + 1][now + 1] += 1
        else:
            dp[i + 1][now] += 1
    for j in range(27):
        dp[i + 1][j] += dp[i][j] * j
        if 0 < j < 26:
            dp[i + 1][j + 1] += dp[i][j] * (26 - j)
    for j in range(27):
        dp[i + 1][j] %= P
    if dat[c] == 0:
        now += 1
        dat[c] +=  1
    if now >= K:ans += 1

for i in range(N,M):
    for j in range(1,27):
        dp[i + 1][j] += dp[i][j] * j
        if 0 < j < 26:
            dp[i + 1][j + 1] += dp[i][j] * (26 - j)
    for j in range(27):
        dp[i + 1][j] %= P
    


for i in range(K,27):
    for j in range(M + 1):
        ans += dp[j][i]
if now >= K:ans -= 1
print(ans % P)
0