結果

問題 No.2031 Colored Brackets
ユーザー とりゐとりゐ
提出日時 2022-06-15 22:27:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 76,256 KB
最終ジャッジ日時 2024-09-15 16:27:19
合計ジャッジ時間 3,419 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,224 KB
testcase_01 AC 38 ms
52,248 KB
testcase_02 AC 39 ms
51,944 KB
testcase_03 AC 42 ms
59,960 KB
testcase_04 AC 67 ms
76,092 KB
testcase_05 AC 61 ms
74,844 KB
testcase_06 AC 65 ms
75,784 KB
testcase_07 AC 40 ms
58,064 KB
testcase_08 AC 79 ms
76,184 KB
testcase_09 AC 82 ms
75,864 KB
testcase_10 AC 90 ms
75,980 KB
testcase_11 AC 85 ms
76,256 KB
testcase_12 AC 88 ms
75,728 KB
testcase_13 AC 74 ms
75,896 KB
testcase_14 AC 91 ms
75,592 KB
testcase_15 AC 98 ms
75,528 KB
testcase_16 AC 91 ms
76,028 KB
testcase_17 AC 93 ms
76,220 KB
testcase_18 AC 85 ms
76,176 KB
testcase_19 AC 85 ms
76,212 KB
testcase_20 AC 78 ms
75,736 KB
testcase_21 AC 75 ms
75,544 KB
testcase_22 AC 79 ms
75,864 KB
testcase_23 AC 92 ms
76,224 KB
testcase_24 AC 38 ms
52,944 KB
testcase_25 AC 38 ms
51,936 KB
testcase_26 AC 38 ms
52,372 KB
testcase_27 AC 41 ms
58,948 KB
testcase_28 AC 40 ms
53,256 KB
testcase_29 AC 38 ms
52,960 KB
testcase_30 AC 40 ms
52,868 KB
testcase_31 AC 49 ms
62,572 KB
testcase_32 AC 38 ms
52,636 KB
testcase_33 AC 49 ms
61,608 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
  if now<0 or now>n//2+5:
    print(0)
    exit()
  
  dp=[i%mod for i in dpn]
if now==0:
  print(dp[0])
else:
  print(0)
0