結果

問題 No.2388 At Least K-Characters
ユーザー timitimi
提出日時 2024-02-16 19:17:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 955 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 78,040 KB
最終ジャッジ日時 2024-09-28 19:35:53
合計ジャッジ時間 17,682 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,788 KB
testcase_01 AC 36 ms
53,208 KB
testcase_02 AC 49 ms
63,272 KB
testcase_03 AC 37 ms
54,180 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
54,348 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 38 ms
52,812 KB
testcase_12 WA -
testcase_13 AC 63 ms
74,752 KB
testcase_14 AC 73 ms
76,436 KB
testcase_15 AC 77 ms
76,720 KB
testcase_16 AC 674 ms
77,772 KB
testcase_17 AC 721 ms
77,252 KB
testcase_18 AC 692 ms
77,280 KB
testcase_19 AC 723 ms
77,704 KB
testcase_20 AC 690 ms
78,040 KB
testcase_21 AC 780 ms
77,532 KB
testcase_22 AC 756 ms
77,356 KB
testcase_23 AC 754 ms
77,520 KB
testcase_24 AC 733 ms
77,528 KB
testcase_25 AC 648 ms
78,028 KB
testcase_26 AC 733 ms
77,404 KB
testcase_27 AC 727 ms
77,264 KB
testcase_28 AC 719 ms
77,404 KB
testcase_29 AC 699 ms
77,668 KB
testcase_30 AC 681 ms
77,528 KB
testcase_31 AC 687 ms
77,408 KB
testcase_32 AC 656 ms
77,308 KB
testcase_33 AC 640 ms
77,412 KB
testcase_34 AC 711 ms
77,400 KB
testcase_35 AC 719 ms
77,376 KB
testcase_36 AC 714 ms
77,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int, input().split())
S=input()
dp=[[0]*2 for i in range(28)]
dp[0][0]=1;T=[0]*26 

ans=0;mod=998244353
for j in range(N):
  ss=S[j]
  ndp=[[0]*2 for _ in range(28)]
  s=ord(ss)-ord('a')
  for i in range(27):
    ndp[i][1]+=dp[i][1]*i
    ndp[i][1]%=mod
    ndp[i+1][1]+=dp[i][1]*(26-i)
    ndp[i+1][1]%=mod
  t=sum(T)
  for i in range(s):
    if T[i]==0:
      ndp[t+1][1]+=dp[t][0]
      ndp[t+1][1]%=mod
    else:
      ndp[t][1]+=dp[t][0]
      ndp[t][1]%=mod
  if T[s]==0:
    ndp[t+1][0]+=dp[t][0]
    ndp[t+1][0]%=mod
  else:
    ndp[t][0]+=dp[t][0]
    ndp[t][0]%=mod
  T[s]=1
  dp=ndp
  for i in range(K,27):
    ans+=dp[i][0]
    ans+=dp[i][1]
    ans%=mod

for _ in range(M-N):
  ndp=[[0]*2 for _ in range(28)]
  for i in range(27):
    ndp[i][1]+=dp[i][1]*i
    ndp[i][1]%=mod
    ndp[i+1][1]+=dp[i][1]*(26-i)
    ndp[i+1][1]%=mod
  dp=ndp 
  for i in range(K,27):
    ans+=dp[i][0]
    ans+=dp[i][1]
    ans%=mod

print((ans-1)%mod)
0