結果

問題 No.2636 No Waiting in Vain
ユーザー loop0919loop0919
提出日時 2024-02-18 13:35:25
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 544 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 133,652 KB
最終ジャッジ日時 2024-09-29 00:23:53
合計ジャッジ時間 10,084 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,464 KB
testcase_01 AC 33 ms
52,740 KB
testcase_02 RE -
testcase_03 AC 34 ms
52,984 KB
testcase_04 AC 389 ms
133,484 KB
testcase_05 AC 392 ms
133,488 KB
testcase_06 AC 389 ms
133,492 KB
testcase_07 AC 392 ms
133,372 KB
testcase_08 AC 377 ms
133,312 KB
testcase_09 AC 391 ms
133,256 KB
testcase_10 AC 385 ms
133,260 KB
testcase_11 AC 381 ms
133,584 KB
testcase_12 AC 375 ms
133,536 KB
testcase_13 AC 379 ms
133,504 KB
testcase_14 AC 383 ms
133,652 KB
testcase_15 AC 377 ms
133,596 KB
testcase_16 AC 375 ms
133,536 KB
testcase_17 AC 383 ms
133,512 KB
testcase_18 AC 380 ms
133,596 KB
testcase_19 AC 372 ms
133,400 KB
testcase_20 AC 379 ms
133,472 KB
testcase_21 AC 379 ms
133,512 KB
testcase_22 AC 382 ms
133,524 KB
testcase_23 AC 374 ms
133,504 KB
testcase_24 AC 45 ms
62,368 KB
testcase_25 AC 44 ms
63,716 KB
testcase_26 AC 45 ms
61,736 KB
testcase_27 AC 44 ms
62,236 KB
testcase_28 AC 45 ms
62,260 KB
testcase_29 AC 45 ms
62,944 KB
testcase_30 AC 44 ms
62,420 KB
testcase_31 AC 45 ms
62,544 KB
testcase_32 AC 44 ms
61,944 KB
testcase_33 AC 44 ms
62,068 KB
testcase_34 AC 44 ms
61,744 KB
testcase_35 AC 45 ms
63,172 KB
testcase_36 AC 44 ms
62,192 KB
testcase_37 AC 45 ms
62,388 KB
testcase_38 AC 45 ms
62,048 KB
testcase_39 AC 44 ms
61,788 KB
testcase_40 AC 46 ms
62,080 KB
testcase_41 AC 45 ms
63,600 KB
testcase_42 AC 47 ms
62,492 KB
testcase_43 AC 45 ms
62,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

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

if K > S.count('N'):
    print(0)
    exit()

facts = [1]
inv_facts = [1]

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

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