#875
Gold II
ZAPIS
시간 제한
1s
메모리 제한
32MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

A regular bracket-sequence is a string of characters consisting only of opening and closing brackets, and satisfying the following conditions:

  • An empty string is a regular bracket-sequence.

  • If A is a regular bracket-sequence, then (A), [A] and {A} are also regular bracket-sequences.

  • If A and B are regular bracket-sequences, then AB is also a regular bracket-sequence.

For example, the sequences [({})], {} i {}[{}] are regular, but the sequences [({{([, } and [{}])([{}] are not. Ivica has found a string which looks like it could be a regular bracket-sequence. Some of the characters have become smudged and illegible, and could have been any character. Write a program that calculates how many ways the illegible characters in the string can be replaced by brackets so that the result is a regular bracket-sequence. This number can be very large, so output only its last 5 digits.

입력

The first line contains an even integer N (2 ≤ N ≤ 200), the length of the string. The second line contains the string. Illegible characters are represented by the '?' character.

출력

Output the number of regular bracket-sequences the string could have read.

예제 입력 1

6
()()()

예제 출력 1

1

예제 입력 2

10
(?([?)]?}?

예제 출력 2

3

예제 입력 3

16
???[???????]????

예제 출력 3

92202
코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Gold II1명 투표· 약 1개월 전
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.