結果

問題 No.2636 No Waiting in Vain
ユーザー kemunikukemuniku
提出日時 2024-02-13 20:14:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,676 KB
最終ジャッジ日時 2024-09-29 00:21:49
合計ジャッジ時間 3,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,196 KB
testcase_01 AC 37 ms
52,700 KB
testcase_02 AC 36 ms
52,732 KB
testcase_03 AC 37 ms
53,020 KB
testcase_04 AC 96 ms
76,208 KB
testcase_05 AC 89 ms
76,276 KB
testcase_06 AC 71 ms
76,204 KB
testcase_07 AC 88 ms
76,556 KB
testcase_08 AC 67 ms
76,200 KB
testcase_09 AC 91 ms
76,652 KB
testcase_10 AC 89 ms
76,208 KB
testcase_11 AC 59 ms
70,160 KB
testcase_12 AC 92 ms
76,676 KB
testcase_13 AC 91 ms
76,496 KB
testcase_14 AC 71 ms
76,192 KB
testcase_15 AC 92 ms
76,620 KB
testcase_16 AC 53 ms
65,364 KB
testcase_17 AC 91 ms
76,664 KB
testcase_18 AC 73 ms
76,424 KB
testcase_19 AC 91 ms
76,260 KB
testcase_20 AC 90 ms
76,312 KB
testcase_21 AC 93 ms
76,232 KB
testcase_22 AC 78 ms
76,220 KB
testcase_23 AC 90 ms
76,276 KB
testcase_24 AC 42 ms
58,768 KB
testcase_25 AC 42 ms
60,932 KB
testcase_26 AC 39 ms
59,312 KB
testcase_27 AC 41 ms
61,480 KB
testcase_28 AC 41 ms
60,248 KB
testcase_29 AC 42 ms
59,560 KB
testcase_30 AC 44 ms
60,992 KB
testcase_31 AC 44 ms
61,376 KB
testcase_32 AC 43 ms
60,712 KB
testcase_33 AC 43 ms
60,564 KB
testcase_34 AC 42 ms
60,368 KB
testcase_35 AC 41 ms
59,664 KB
testcase_36 AC 41 ms
59,900 KB
testcase_37 AC 40 ms
59,432 KB
testcase_38 AC 42 ms
61,472 KB
testcase_39 AC 40 ms
59,776 KB
testcase_40 AC 43 ms
60,632 KB
testcase_41 AC 43 ms
60,772 KB
testcase_42 AC 41 ms
61,236 KB
testcase_43 AC 43 ms
59,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
S = input()
MOD = 998244353
Candidate_Day = 0 #予定を入れても良い日
for i in range(N):
    if i != 0:
        if S[i] == "N" and S[i-1] != "C":
            Candidate_Day += 1
    else:
        if S[i] == "N":
            Candidate_Day += 1
ans = 0
tmp = 1
for i in range(1,S.count("N")-K+1):
    if Candidate_Day < i:
        break
    tmp *= (Candidate_Day-i+1)
    tmp *= pow(i,-1,MOD)
    tmp %= MOD
    ans += tmp
    ans %= MOD
print(ans)
0