시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB217441.869%

문제

In the "circular game" the board consists of m fields arranged on a circle and numbered from 1 to m. On the board there are b white and c black pieces, at most one on each field. Two players are playing the game, the white player and the black player. Starting from the white player, the players perform their moves on the board alternately. A move consists of moving a piece of the player's colour any number of free fields forward or backward. For instance, for the board depicted below, the white player can move the piece from field 3 to field 4 or the piece from field 8 to any of the fields 7, 9 and 1.

If a player can perform no moves in his turn, he loses. Knowing that both players play optimally, check who wins the game. It can happen that none of the players wins (the game never ends).

입력

The first line of the standard input contains one integer t representing the number of boards to be considered. The following lines contain descriptions of respective boards, each of which consists of three lines. In the first line there are three integers m, b and c (1 ≤ m ≤ 109, 1 ≤ b, c) separated by single spaces and denoting the length of the board, the number of white pieces and the number of black pieces. In the second line there is an increasing sequence of b integers (in the range 1, ..., m) representing the positions of white pieces. In the third line there is an increasing sequence of c integers (in the range 1, ..., m) representing the positions of black pieces. The total number of pieces in all boards does not exceed 106.

출력

Exactly t lines with answers for consecutive boards should be written to the standard output. The answer is always a single character: BC, or R, depending on whether the white player wins (B), the black player wins (C) or the game never ends (R).

예제 입력 1

3
9 2 3
3 8
2 5 6
6 2 2
5 6
2 4
7 1 1
3
4

예제 출력 1

C
B
R