結果

問題 No.2872 Depth of the Parentheses
ユーザー tama04tama04
提出日時 2024-09-22 19:43:36
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 3,577 ms
コンパイル使用メモリ 277,108 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 19:43:50
合計ジャッジ時間 4,928 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 76 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 20 ms
6,944 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 6 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 78 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 76 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 76 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 77 ms
6,940 KB
evil_01.txt WA -
evil_02.txt WA -
evil_03.txt WA -
evil_04.txt AC 5 ms
6,944 KB
evil_05.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using namespace atcoder;

using mint = modint998244353;

int main(void) {
	int ix, k;
	cin >> ix >> k;

	int k2 = k * 2;

	mint x = ix;
	mint ans = 0;
	int depth = -1, cur = -1;
	for (int bit = 0; bit < (1 << k2); bit++) {
		depth = 0;
		cur = 0;

		bool flag = true;
		for (int i = 0; i < k2; i++) {
			if (bit & (1 << i)) {
				cur++;
				depth = max(depth, cur);
			}
			else {
				cur--;
				if (cur < 0) flag = false;
			}
		}

		if (cur == 0 && flag) {
			ans += (mint)depth;
		}
	}

	ans *= (x.pow(k) * ((mint)100 - x).pow(k));
	for (int i = 0; i < k2; i++) ans /= (mint)100;

	cout << ans.val() << endl;

	return 0;
}
0