結果

問題 No.2636 No Waiting in Vain
ユーザー elpheelphe
提出日時 2024-08-11 14:52:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 888 bytes
コンパイル時間 638 ms
コンパイル使用メモリ 70,272 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-08-11 14:52:04
合計ジャッジ時間 3,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 49 ms
5,376 KB
testcase_05 AC 48 ms
5,376 KB
testcase_06 AC 26 ms
5,376 KB
testcase_07 AC 49 ms
5,376 KB
testcase_08 AC 15 ms
5,376 KB
testcase_09 AC 50 ms
5,376 KB
testcase_10 AC 43 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 49 ms
5,376 KB
testcase_13 AC 49 ms
5,376 KB
testcase_14 AC 22 ms
5,376 KB
testcase_15 AC 49 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 50 ms
5,376 KB
testcase_18 AC 23 ms
5,376 KB
testcase_19 AC 48 ms
5,376 KB
testcase_20 AC 47 ms
5,376 KB
testcase_21 AC 48 ms
5,376 KB
testcase_22 AC 31 ms
5,376 KB
testcase_23 AC 46 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>

#define MOD   998244353

using namespace std;

constexpr unsigned int pow_mod(const unsigned long long a, const unsigned long long b, const unsigned int mod)
{
	return (b == 0 ? (mod == 1 ? 0 : 1) : (b & 1 ? a % mod : 1) * pow_mod((a % mod) * (a % mod) % mod, b >> 1, mod) % mod);
}

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	uint32_t N, K, i, count = 0, ans = 0, temp;
	cin >> N >> K;
	string S;
	S.reserve(N), cin >> S;

	if (S[0] == 'N') ++count;
	for (i = 1; i != N; ++i)
		if (S[i] == 'N')
		{
			if (S[i - 1] == 'C')
			{
				if (K != 0) --K;
			}
			else ++count;
		}

	if (count < K) cout << "0\n";
	else
	{
		temp = count;
		for (i = 1; i <= count - K; ++i)
			ans = (ans + temp) % MOD, temp = temp * static_cast<uint64_t>(count - i) % MOD * pow_mod(i + 1, MOD - 2, MOD) % MOD;
		cout << ans << '\n';
	}

	return 0;
}
0