#Lutece0666. Krolia's Number

Krolia's Number

Migrated from Lutece 666 Krolia's Number

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Krolia define a new number which is called Kumber. To get a Kumber, one must do a Kumber Transformation on a positive integer which don't contains the digit 00.

A Kumber Transformation is that delete a digit ii(1i91\leq i\leq 9) in the integer aia_i times. For example, ai=(1,1,1,0,0,0,0,0,0)a_i=(1,1,1,0,0,0,0,0,0) and the integer n=123321n=123321, which means you must delete one digit 11,one digit 22 and one digit 33 from nn.After the Kumber Transformation you will get some Kumbers such as 123,321,231123,321,231\cdots

Given aia_i and the positive integer nn, you must find the largest Kumber which one can get from that Kumber Transformation.

Input

There is only one integer TT(T100T\leq 100) in the first line indicating the number of test cases.

The first line of each test cases contains an integer nn(0n<101010\leq n<10^{101},No 00-digit in number nn), and the second line contains 99 numbers aia_i (0ai1000\leq a_i\leq 100).We guarantee that the integer nn contains at least aia_i digit ii and the sum of aia_i is less than the length of n(that is to say, you won't get nothing after the transformation).

Output

For each test case, output an integer which is the largest Kumber you can get.

Samples

2
123321
1 1 1 0 0 0 0 0 0
212
0 1 0 0 0 0 0 0 0
321
21

Resources

KroliaFansClub