시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 (추가 시간 없음) 512 MB117585451.429%

문제

Two great friends, Eddie John and Kris Cross, are attending the Brackets Are Perfection Conference. They wholeheartedly agree with the main message of the conference and they are delighted with all the new things they learn about brackets.

One of these things is a bracket sequence. If you want to do a computation with + and ×, you usually write it like so:

(2 × (2 + 1 + 0 + 1) × 1) + 3 + 2.

The brackets are only used to group multiplications and additions together. This means that you can remove all the operators, as long as you remember that addition is used for numbers outside any parentheses! A bracket sequence can then be shortened to

( 2 ( 2 1 0 1 ) 1 ) 3 2.

That is much better, because it saves on writing all those operators. Reading bracket sequences is easy, too. Suppose you have the following bracket sequence

5 2 ( 3 1 ( 2 2 ) ( 3 3 ) 1 ).

You start with addition, so this is the same as the following:

5 + 2 + ( 3 1 ( 2 2 ) ( 3 3 ) 1 ).

You know the parentheses group a multiplication, so this is equal to

5 + 2 + (3 × 1 × ( 2 2 ) × ( 3 3 ) × 1).

Then there is another level of parentheses: that groups an operation within a multiplication, so the operation must be addition.

5 + 2 + (3 × 1 × (2 + 2) × (3 + 3) × 1) = 5 + 2 + (3 × 1 × 4 × 6 × 1) = 5 + 2 + 72 = 79.

Since bracket sequences are so much easier than normal expressions with operators, it should be easy to evaluate some big ones. We will even allow you to write a program to do it for you.

Note that ( ) is not a valid bracket sequence, nor a subsequence of any valid bracket sequence.

입력

  • One line containing a single integer 1 ≤ n ≤ 3 · 105.
  • One line consisting of n tokens, each being either (, ), or an integer 0 ≤ x < 109 + 7. It is guaranteed that the tokens form a bracket sequence.

출력

Output the value of the given bracket sequence. Since this may be very large, you should print it modulo 109 + 7.

예제 입력 1

2
2 3

예제 출력 1

5

예제 입력 2

8
( 2 ( 2 1 ) ) 3

예제 출력 2

9

예제 입력 3

4
( 12 3 )

예제 출력 3

36

예제 입력 4

6
( 2 ) ( 3 )

예제 출력 4

5

예제 입력 5

6
( ( 2 3 ) )

예제 출력 5

5

예제 입력 6

11
1 ( 0 ( 583920 ( 2839 82 ) ) )

예제 출력 6

1