結果

問題 No.2388 At Least K-Characters
ユーザー ShirotsumeShirotsume
提出日時 2023-07-21 22:30:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 916 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 237,440 KB
最終ジャッジ日時 2024-07-05 03:50:22
合計ジャッジ時間 18,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
65,972 KB
testcase_01 AC 56 ms
65,656 KB
testcase_02 AC 62 ms
68,236 KB
testcase_03 AC 56 ms
66,136 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 56 ms
67,056 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 61 ms
67,424 KB
testcase_12 WA -
testcase_13 AC 76 ms
74,616 KB
testcase_14 AC 74 ms
74,700 KB
testcase_15 AC 73 ms
74,276 KB
testcase_16 AC 708 ms
236,940 KB
testcase_17 AC 599 ms
236,800 KB
testcase_18 AC 708 ms
236,820 KB
testcase_19 AC 722 ms
237,180 KB
testcase_20 AC 741 ms
237,048 KB
testcase_21 AC 784 ms
236,948 KB
testcase_22 AC 776 ms
236,940 KB
testcase_23 AC 805 ms
237,184 KB
testcase_24 AC 754 ms
237,072 KB
testcase_25 AC 712 ms
237,060 KB
testcase_26 AC 863 ms
237,440 KB
testcase_27 AC 758 ms
236,928 KB
testcase_28 AC 775 ms
236,932 KB
testcase_29 AC 752 ms
237,076 KB
testcase_30 AC 768 ms
237,056 KB
testcase_31 AC 727 ms
236,936 KB
testcase_32 AC 729 ms
237,200 KB
testcase_33 AC 721 ms
237,316 KB
testcase_34 AC 772 ms
236,828 KB
testcase_35 AC 787 ms
236,940 KB
testcase_36 AC 762 ms
236,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
import string
s = string.ascii_lowercase
n, m, k = mi()
a = input()
dp = [[0] * (30) for _ in range(m + 2)]

S = set()
ans = -1
for i in range(m + 1):
    for j in range(27):
        dp[i + 1][j] += dp[i][j] * j
        dp[i + 1][j] %= mod
        dp[i + 1][j + 1] += dp[i][j] * (26-j)
        dp[i + 1][j + 1] %= mod
    L = len(S)
    if i < n:
        p = s.index(a[i])
        for to in range(0, p):
            if s[to] not in S:
                dp[i + 1][L + 1] += 1
            else:
                dp[i + 1][L] += 1
        S.add(a[i])
        if len(S) >= k:
            ans += 1
    for j in range(k, 27):
        ans += dp[i][j]
        ans %= mod
print(ans)
0