시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB23141477.778%

문제

The Codejamon game is on fire! Many players have gathered in an auditorium to fight for the World Championship. At the opening ceremony, players will sit in a grid of seats with R rows and C columns.

The competition will be intense, and the players are sensitive about sitting near too many of their future opponents! A player will feel too crowded if another player is seated directly to their left and another player is seated directly to their right. Also, a player will feel too crowded if one player is seated directly in front of them and another player is seated directly behind them. 

What is the maximum number of players that can be seated such that no player feels too crowded? 

입력

The first line of the input gives the number of test cases, T. T test cases follow. Each test case consists of one line with two integers R and C: the number of rows and columns of chairs in the auditorium.

출력

For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the maximum number of players that can be seated, as described in the problem statement.

제한

  • 1 ≤ T ≤ 100.
  • 1 ≤ R ≤ 5.
  • 1 ≤ C ≤ 5.

예제 입력 1

3
2 2
2 3
4 1

예제 출력 1

Case #1: 4
Case #2: 4
Case #3: 3

힌트

In sample case #1, we can fill all seats, and no player will feel too crowded.

In sample case #2, each row has three seats. We can't put three players in a row, since that would make the middle player feel too crowded. One optimal solution is to fill each of the first two columns, for a total of four players.

In sample case #3, one optimal solution is to fill the first two rows and the last row, for a total of three players.

채점 및 기타 정보

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