結果

問題 No.2636 No Waiting in Vain
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-18 14:03:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 923 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 228,172 KB
最終ジャッジ日時 2024-09-29 00:25:34
合計ジャッジ時間 41,560 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 913 ms
212,588 KB
testcase_01 AC 869 ms
213,880 KB
testcase_02 AC 874 ms
214,692 KB
testcase_03 AC 861 ms
212,724 KB
testcase_04 AC 902 ms
224,736 KB
testcase_05 AC 887 ms
227,284 KB
testcase_06 AC 901 ms
222,388 KB
testcase_07 AC 892 ms
227,344 KB
testcase_08 AC 923 ms
221,168 KB
testcase_09 AC 898 ms
226,796 KB
testcase_10 AC 902 ms
224,964 KB
testcase_11 AC 904 ms
220,400 KB
testcase_12 AC 893 ms
227,392 KB
testcase_13 AC 899 ms
226,576 KB
testcase_14 AC 886 ms
221,328 KB
testcase_15 AC 913 ms
226,424 KB
testcase_16 AC 913 ms
218,768 KB
testcase_17 AC 892 ms
226,652 KB
testcase_18 AC 895 ms
222,016 KB
testcase_19 AC 910 ms
226,836 KB
testcase_20 AC 897 ms
228,172 KB
testcase_21 AC 889 ms
227,012 KB
testcase_22 AC 891 ms
222,452 KB
testcase_23 AC 886 ms
224,976 KB
testcase_24 AC 879 ms
215,120 KB
testcase_25 AC 884 ms
215,552 KB
testcase_26 AC 884 ms
214,292 KB
testcase_27 AC 878 ms
216,132 KB
testcase_28 AC 876 ms
215,440 KB
testcase_29 AC 887 ms
214,596 KB
testcase_30 AC 885 ms
216,092 KB
testcase_31 AC 880 ms
215,188 KB
testcase_32 AC 875 ms
215,380 KB
testcase_33 AC 869 ms
215,124 KB
testcase_34 AC 876 ms
215,528 KB
testcase_35 AC 895 ms
215,264 KB
testcase_36 AC 884 ms
215,592 KB
testcase_37 AC 874 ms
214,408 KB
testcase_38 AC 873 ms
216,812 KB
testcase_39 AC 906 ms
215,196 KB
testcase_40 AC 887 ms
215,120 KB
testcase_41 AC 883 ms
217,360 KB
testcase_42 AC 865 ms
215,748 KB
testcase_43 AC 868 ms
215,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fact=[]
rev=[]
def comb_init(N=1000000,MOD=998244353):
    global fact,rev
    fact=[1]
    rev=[1]
    for i in range(N):
        fact.append((fact[-1]*(i+1))%MOD)
        rev.append((rev[-1]*pow(i+1,MOD-2,MOD))%MOD)

def comb(n,r,MOD=998244353):
    if n<r:
        return 0
    return (fact[n]*rev[r]*rev[n-r])%MOD

comb_init()
N,K=map(int,input().split())
S="P"+input()
cnt=0
for i in range(N):
	if S[i+1]=="N":
		if S[i]!="C":
			cnt+=1
		else:
			K-=1
ans=0
for i in range(1,cnt-K+1):
	ans+=comb(cnt,i)
print(ans%998244353)
0