#P1328C. Ternary XOR
Ternary XOR
No submission language available for this problem.
Description
A number is ternary if it contains only digits , and . For example, the following numbers are ternary: , , , .
You are given a long ternary number . The first (leftmost) digit of is guaranteed to be , the other digits of can be , or .
Let's define the ternary XOR operation of two ternary numbers and (both of length ) as a number of length , where (where is modulo operation). In other words, add the corresponding digits and take the remainders of the sums when divided by . For example, .
Your task is to find such ternary numbers and both of length and both without leading zeros that and is the minimum possible.
You have to answer independent test cases.
The first line of the input contains one integer () — the number of test cases. Then test cases follow. The first line of the test case contains one integer () — the length of . The second line of the test case contains ternary number consisting of digits or . It is guaranteed that the first digit of is . It is guaranteed that the sum of over all test cases does not exceed ().
For each test case, print the answer — two ternary integers and both of length and both without leading zeros such that and is the minimum possible. If there are several answers, you can print any.
Input
The first line of the input contains one integer () — the number of test cases. Then test cases follow. The first line of the test case contains one integer () — the length of . The second line of the test case contains ternary number consisting of digits or . It is guaranteed that the first digit of is . It is guaranteed that the sum of over all test cases does not exceed ().
Output
For each test case, print the answer — two ternary integers and both of length and both without leading zeros such that and is the minimum possible. If there are several answers, you can print any.