結果

問題 No.2872 Depth of the Parentheses
ユーザー hiro1729hiro1729
提出日時 2024-09-06 22:08:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 76,360 KB
最終ジャッジ日時 2024-09-06 22:10:24
合計ジャッジ時間 4,953 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,760 KB
testcase_01 AC 42 ms
62,004 KB
testcase_02 AC 35 ms
52,656 KB
testcase_03 AC 51 ms
67,768 KB
testcase_04 AC 60 ms
74,628 KB
testcase_05 AC 33 ms
53,384 KB
testcase_06 AC 32 ms
52,276 KB
testcase_07 AC 537 ms
76,208 KB
testcase_08 AC 43 ms
62,940 KB
testcase_09 AC 34 ms
52,612 KB
testcase_10 AC 151 ms
76,204 KB
testcase_11 AC 78 ms
76,004 KB
testcase_12 AC 77 ms
76,260 KB
testcase_13 AC 78 ms
75,996 KB
testcase_14 AC 58 ms
74,276 KB
testcase_15 AC 43 ms
61,944 KB
testcase_16 AC 541 ms
76,016 KB
testcase_17 AC 50 ms
67,748 KB
testcase_18 AC 502 ms
76,172 KB
testcase_19 AC 33 ms
53,068 KB
testcase_20 AC 529 ms
76,360 KB
testcase_21 AC 37 ms
54,000 KB
testcase_22 AC 515 ms
76,312 KB
evil_01.txt WA -
evil_02.txt WA -
evil_03.txt WA -
evil_04.txt WA -
evil_05.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

x, K = map(int, input().split())

if K > 10:
	exit()

cnt = [0] * (K + 1)
for i in range(1 << (2 * K)):
	if bin(i).count('1') == K:
		now = 0
		mx = 0
		ok = True
		for j in range(2 * K):
			if i & (1 << j):
				now += 1
			else:
				now -= 1
			if now < 0:
				ok = False
			mx = max(mx, now)
		if ok:
			cnt[mx] += 1

mod = 998244353
s = sum(i * cnt[i] for i in range(K + 1))
print(s * pow(x * (100 - x), K, mod) * pow(100, mod - 1 - 2 * K, mod) % mod)
0