MOG Round #15Ended |
Polo, the Penguin, likes lucky strings - the strings that consist only of lucky digits 4 and 7 .
He has a lucky string S . Digits in this string are numbered from left to right starting with 1 . He performs the following operations on the string while it is possible to do so:
Find the result that he will get at the end.
The first line of the input contains an integer T denoting the number of test cases. The description of T test cases follows. The first line of each test case contains a single integer N denoting the size of the string S . The second line contains the lucky string S .
For each test case, output a single line containing the answer to the corresponding test case.
Example case 1. In this case, there is just a single iteration. Since P = {1, 3} , the answer is 1 + 3 = 4 .
Example case 2. In this case, there are three iterations. On the first iteration P = {3, 5, 9} . On the second iteration S = 4477, P = {2} . On the third iteration S = 47, P = {1} . So the answer is 3 + 5 + 9 + 2 + 1 = 20 .