結果

問題 No.2031 Colored Brackets
ユーザー shobonvipshobonvip
提出日時 2022-08-06 00:13:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 138,112 KB
最終ジャッジ日時 2024-09-15 22:12:11
合計ジャッジ時間 5,741 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 51 ms
59,904 KB
testcase_04 AC 127 ms
91,904 KB
testcase_05 AC 85 ms
73,344 KB
testcase_06 AC 111 ms
88,960 KB
testcase_07 AC 43 ms
52,224 KB
testcase_08 AC 177 ms
112,384 KB
testcase_09 AC 191 ms
115,072 KB
testcase_10 AC 237 ms
138,112 KB
testcase_11 AC 190 ms
115,200 KB
testcase_12 AC 244 ms
137,728 KB
testcase_13 AC 164 ms
108,544 KB
testcase_14 AC 248 ms
137,984 KB
testcase_15 AC 248 ms
137,984 KB
testcase_16 AC 244 ms
138,112 KB
testcase_17 AC 260 ms
137,856 KB
testcase_18 AC 232 ms
137,600 KB
testcase_19 AC 223 ms
132,736 KB
testcase_20 AC 167 ms
111,488 KB
testcase_21 AC 174 ms
113,536 KB
testcase_22 AC 173 ms
115,200 KB
testcase_23 AC 229 ms
137,856 KB
testcase_24 AC 41 ms
51,456 KB
testcase_25 AC 40 ms
51,968 KB
testcase_26 AC 41 ms
51,712 KB
testcase_27 AC 43 ms
52,096 KB
testcase_28 AC 41 ms
51,584 KB
testcase_29 AC 41 ms
51,456 KB
testcase_30 AC 41 ms
51,840 KB
testcase_31 AC 60 ms
63,232 KB
testcase_32 AC 41 ms
51,712 KB
testcase_33 AC 59 ms
63,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = int(input())
s = input()
dp = [[0] * (n+1) for i in range(n+1)]
dp[0][0] = 1

tmp = 0
for i in range(n):
	if s[i] == "(":
		tmp += 1
		for j in range(n+1):
			if j+1 <= n:
				dp[i+1][j+1] += dp[i][j]
				dp[i+1][j+1] %= mod
			if tmp-j >= 0:
				dp[i+1][j] += dp[i][j]
				dp[i+1][j] %= mod
	else:
		tmp -= 1
		for j in range(n+1):
			if j-1 >= 0:
				dp[i+1][j-1] += dp[i][j]
				dp[i+1][j-1] %= mod
			if tmp-j >= 0:
				dp[i+1][j] += dp[i][j]
				dp[i+1][j] %= mod

print(dp[n][0])
0