結果

問題 No.2388 At Least K-Characters
ユーザー sotanishysotanishy
提出日時 2023-07-21 23:45:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 4,000 ms
コード長 607 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 220,128 KB
最終ジャッジ日時 2024-07-05 04:09:12
合計ジャッジ時間 14,624 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,748 KB
testcase_01 AC 37 ms
51,996 KB
testcase_02 AC 42 ms
59,020 KB
testcase_03 AC 37 ms
52,036 KB
testcase_04 AC 37 ms
51,988 KB
testcase_05 AC 37 ms
52,328 KB
testcase_06 AC 37 ms
52,876 KB
testcase_07 AC 37 ms
52,640 KB
testcase_08 AC 37 ms
53,724 KB
testcase_09 AC 38 ms
53,716 KB
testcase_10 AC 37 ms
52,584 KB
testcase_11 AC 38 ms
53,088 KB
testcase_12 AC 39 ms
52,620 KB
testcase_13 AC 56 ms
68,476 KB
testcase_14 AC 56 ms
67,744 KB
testcase_15 AC 58 ms
67,808 KB
testcase_16 AC 556 ms
219,876 KB
testcase_17 AC 658 ms
219,988 KB
testcase_18 AC 524 ms
219,484 KB
testcase_19 AC 533 ms
219,736 KB
testcase_20 AC 568 ms
219,600 KB
testcase_21 AC 645 ms
219,488 KB
testcase_22 AC 678 ms
219,460 KB
testcase_23 AC 630 ms
219,840 KB
testcase_24 AC 726 ms
220,104 KB
testcase_25 AC 531 ms
219,464 KB
testcase_26 AC 634 ms
219,480 KB
testcase_27 AC 590 ms
219,740 KB
testcase_28 AC 627 ms
219,744 KB
testcase_29 AC 656 ms
219,844 KB
testcase_30 AC 655 ms
219,868 KB
testcase_31 AC 540 ms
220,128 KB
testcase_32 AC 538 ms
219,488 KB
testcase_33 AC 532 ms
219,620 KB
testcase_34 AC 606 ms
219,716 KB
testcase_35 AC 631 ms
219,464 KB
testcase_36 AC 605 ms
220,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod = 998244353
N, M, K = map(int, input().split())
S = input().rstrip()
dp = [[0] * 27 for _ in range(M+1)]
ch = set()
ans = 0
for i in range(M):
    for j in range(1, 27):
        dp[i+1][j] = (dp[i][j-1] * (27 - j) + dp[i][j] * j) % mod
    if i < N:
        if len(ch) >= K:
            ans += 1
        for c in range(ord(S[i]) - ord('a')):
            k = len(ch)
            if c not in ch:
                k += 1
            dp[i+1][k] += 1
        ch.add(ord(S[i]) - ord('a'))
ans += sum(dp[i][j] for i in range(1, M+1) for j in range(K, 27))
print(ans % mod)
0