結果

問題 No.2031 Colored Brackets
ユーザー とりゐとりゐ
提出日時 2022-06-15 22:25:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 76,472 KB
最終ジャッジ日時 2024-09-15 16:26:59
合計ジャッジ時間 3,540 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,276 KB
testcase_01 AC 38 ms
52,060 KB
testcase_02 AC 38 ms
52,280 KB
testcase_03 AC 41 ms
59,180 KB
testcase_04 AC 70 ms
76,280 KB
testcase_05 AC 65 ms
74,264 KB
testcase_06 AC 64 ms
76,128 KB
testcase_07 AC 40 ms
57,820 KB
testcase_08 AC 79 ms
75,776 KB
testcase_09 AC 83 ms
76,024 KB
testcase_10 AC 92 ms
75,912 KB
testcase_11 AC 86 ms
76,104 KB
testcase_12 AC 93 ms
75,936 KB
testcase_13 AC 76 ms
76,036 KB
testcase_14 AC 93 ms
75,968 KB
testcase_15 AC 95 ms
76,288 KB
testcase_16 AC 92 ms
76,116 KB
testcase_17 AC 95 ms
76,200 KB
testcase_18 AC 86 ms
75,996 KB
testcase_19 AC 87 ms
76,276 KB
testcase_20 AC 77 ms
76,168 KB
testcase_21 AC 76 ms
76,032 KB
testcase_22 AC 80 ms
76,276 KB
testcase_23 AC 91 ms
76,472 KB
testcase_24 AC 39 ms
52,640 KB
testcase_25 AC 38 ms
52,868 KB
testcase_26 AC 38 ms
53,240 KB
testcase_27 AC 41 ms
58,024 KB
testcase_28 AC 38 ms
53,084 KB
testcase_29 AC 38 ms
52,304 KB
testcase_30 AC 38 ms
53,280 KB
testcase_31 AC 48 ms
61,864 KB
testcase_32 AC 38 ms
53,872 KB
testcase_33 AC 48 ms
62,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
n=int(input())
S=input()
m=n//2+10

dp=[0]*m
dp[0]=1

now=0
for s in S:
  dpn=[0]*m
  if s=='(':
    for i in range(now+1):
      dpn[i]+=dp[i]
      if i!=m-1:
        dpn[i+1]+=dp[i]
    now+=1
  else:
    for i in range(now+1):
      dpn[i]+=dp[i]
      if i!=0:
        dpn[i-1]+=dp[i]
    now-=1
  
  dp=[i%mod for i in dpn]
if now==0:
  print(dp[0])
else:
  print(0)
0