結果

問題 No.2636 No Waiting in Vain
ユーザー loop0919loop0919
提出日時 2024-02-18 13:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 133,880 KB
最終ジャッジ日時 2024-09-29 00:24:08
合計ジャッジ時間 10,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,512 KB
testcase_01 AC 37 ms
52,196 KB
testcase_02 AC 36 ms
52,068 KB
testcase_03 AC 35 ms
52,796 KB
testcase_04 AC 395 ms
133,276 KB
testcase_05 AC 389 ms
133,612 KB
testcase_06 AC 386 ms
133,508 KB
testcase_07 AC 387 ms
133,852 KB
testcase_08 AC 378 ms
133,528 KB
testcase_09 AC 386 ms
133,500 KB
testcase_10 AC 386 ms
133,440 KB
testcase_11 AC 383 ms
133,544 KB
testcase_12 AC 392 ms
133,604 KB
testcase_13 AC 389 ms
133,396 KB
testcase_14 AC 390 ms
133,400 KB
testcase_15 AC 393 ms
133,600 KB
testcase_16 AC 392 ms
133,388 KB
testcase_17 AC 393 ms
133,372 KB
testcase_18 AC 393 ms
133,384 KB
testcase_19 AC 397 ms
133,620 KB
testcase_20 AC 393 ms
133,440 KB
testcase_21 AC 395 ms
133,312 KB
testcase_22 AC 394 ms
133,880 KB
testcase_23 AC 390 ms
133,456 KB
testcase_24 AC 51 ms
63,240 KB
testcase_25 AC 50 ms
62,752 KB
testcase_26 AC 49 ms
63,436 KB
testcase_27 AC 49 ms
63,308 KB
testcase_28 AC 50 ms
62,504 KB
testcase_29 AC 48 ms
62,608 KB
testcase_30 AC 49 ms
62,596 KB
testcase_31 AC 50 ms
61,836 KB
testcase_32 AC 49 ms
61,956 KB
testcase_33 AC 49 ms
63,044 KB
testcase_34 AC 50 ms
63,472 KB
testcase_35 AC 50 ms
62,800 KB
testcase_36 AC 48 ms
61,956 KB
testcase_37 AC 49 ms
62,488 KB
testcase_38 AC 49 ms
62,992 KB
testcase_39 AC 48 ms
62,144 KB
testcase_40 AC 48 ms
62,344 KB
testcase_41 AC 50 ms
62,312 KB
testcase_42 AC 49 ms
62,940 KB
testcase_43 AC 49 ms
62,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

N, K = map(int, input().split())
S = ['P'] + list(input())

# 階乗全列挙
facts = [1]
inv_facts = [1]

for i in range(1, N+1):
    facts.append(facts[i-1] * i % MOD)
    inv_facts.append(inv_facts[i-1] * pow(i, MOD-2, MOD) % MOD)

# nCr 全列挙
def comb(n, r):
    return facts[n] * inv_facts[n-r] * inv_facts[r] % MOD

max_plan = S.count('N') - K

cnt = 0

for i in range(1, N+1):
    if S[i] == 'N' and S[i-1] != 'C':
        cnt += 1

print(sum(comb(cnt, i) for i in range(1, min(max_plan, cnt) + 1)) % MOD)
0