#include using namespace std; using ll=long long; constexpr int mod=998244353; void ch(ll &a,ll b){ a=(a+b)%mod; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N,M,K; cin>>N>>M>>K; string S; cin>>S; vector>dp(M+1,array()); for(int i=0;i<=M;i++){ for(int j=0;j<=26;j++)dp[i][j]=0; } unordered_setsd; ll ans=0; for(int i=0;i=K)++ans; sd.insert(S[i]); } } for(int i=0;i<=M;i++){ for(int j=K;j<=26;j++){ ch(ans,dp[i][j]); } } cout<