시간 제한메모리 제한제출정답맞힌 사람정답 비율
10 초 (추가 시간 없음) 1024 MB64466.667%

문제

Your country's space agency has just landed a rover on a new planet. The planet's surface can be thought of as a grid of squares containing 109 columns (numbered starting from 1 from west to east) and 109 rows (numbered starting from 1 from north to south). Let (w, h) denote the square in the w-th column and the h-th row. The rover begins on the square (1, 1).

The rover can be maneuvered around on the surface of the planet by sending it a program, which contains a string of characters representing movements in the four cardinal directions. The robot executes each character of the string in order. The rover moves according to the following rules:

  • N: Move one unit north.
  • S: Move one unit south.
  • E: Move one unit east.
  • W: Move one unit west.

There is also a special instruction X(Y), where X is a number between 2 and 9 (inclusive) and Y is a non-empty subprogram. This denotes that the robot should repeat the subprogram Y a total of X times. For example:

  • 2(NWE) is equivalent to NWENWE.
  • 3(S2(E)) is equivalent to SEESEESEE.
  • EEEE4(N)2(SS) is equivalent to EEEENNNNSSSS.

Since the planet is a spheroid, the first and last columns are adjacent, so moving east from column 109 will move the rover to column 1 and moving south from row 109 will move the rover to row 1. Similarly, moving west from column 1 will move the rover to column 109 and moving north from row 1 will move the rover to row 109. Given a program that the robot will execute, determine the final position of the robot after it has finished all its movements.

입력

The first line of the input gives the number of test cases, TT lines follow. Each line contains a single string: the program sent to the rover.

출력

For each test case, output one line containing Case #x: w h, where x is the test case number (starting from 1) and w h is the final square (w, h) the rover finishes in.

제한

  • 1 ≤ T ≤ 100.
  • The string represents a valid program.
  • The length of each program is between 1 and 2000 characters inclusive.

Test Set 1 (11점)

  • The total number of moves the robot will make in a single test case is at most 104.

Test Set 2 (16점)

  • No additional constraints.

예제 입력 1

4
SSSEEE
N
N3(S)N2(E)N
2(3(NW)2(W2(EE)W))

예제 출력 1

Case #1: 4 4
Case #2: 1 1000000000
Case #3: 3 1
Case #4: 3 999999995

힌트

In Sample Case #1, the rover moves three units south, then three units east.

In Sample Case #2, the rover moves one unit north. Since the planet is a torus, this moves it into row 109.

In Sample Case #3, the program given to the rover is equivalent to NSSSNEEN.

In Sample Case #4, the program given to the rover is equivalent to NWNWNWWEEEEWWEEEEWNWNWNWWEEEEWWEEEEW.

채점 및 기타 정보

  • 예제는 채점하지 않는다.