#P3226. String's Puzzle
String's Puzzle
Description
Zhu Ming and Small Li find a strange stone tablet, which has some capitals printed on it. Capitals in every string are different with each other, and every capital string is followed by a number. Because of their supernormal intelligence, Zhu Ming and Small Li find the number following the string is numbered in the order of dictionary sequence from little to big (the original number is 0).For example, when the length of capital string is 3, number following the string will be:
ABC | 0 |
ABD | 1 |
…… | |
ZYX | 15599 |
To better study this puzzle, please make a program to given a n-length string (1<=n<=26), output the number of the string.
Input
There are several test cases.
Each data is made up of two lines.The first line is number n (1<=n<=26)The second line is a string with its length of n.n=0 means end of the input.Output
Output the string number for each group of data tested.
3
ABC
3
ZYX
3
ABD
4
ABCD
0
0
15599
1
0