题面
In the game of Musical Chairs, players walk around a circle of chairs while music plays on the stereo. When the music stops, everyone hurries to claim a chair. The player who is left standing gets knocked out of the game.
You are given a playerNames-list which containing the names of the players, ordered according to their position at the start of the game, such as the following.
"Emma Sue", "Billy Bob Thornton", "Joe", "Cassius Clay"
You are also given a string chairs describing the arrangement of chairs with an h
(lowercase letter H) for each chair and exactly one .
(period) indicating a gap. The -th character of chairs corresponds to the -th element of playerNames. For instance, the chairs might be arranged as follows.
hh.h
The player by the gap is the one who gets knocked out. For example, if the four players above are in their starting order when the music stops, then Joe gets knocked out. For each second of music, the players advance one position. From the original order shown above, for example, the players' order changes to the following after one second.
"Cassius Clay", "Emma Sue", "Billy Bob Thornton", "Joe"
Given an int seconds specifying the number of seconds that the music is played, return the name of the player who gets knocked out.
输入格式
There may be multiple testcase. Process till the end of file.
Each data set start with a single number stand for the number () of playerNames.
Then following lines. In each line there is a string stand for one people's name in the order discribe above.Each element of playerNames will contain between and characters, inclusive, and contain only letters ('A'-'Z', 'a'-'z') and spaces (' ').
line is the string of chairs, it will contain the same number of characters as the number of elements in playerNames. Exactly one character in chairs will be .
, and all the other characters will be h
.
line is an interger seconds, will be between and , inclusive.
输出格式
For each test case output a single line, the name of the player who gets knocked out.
There are no extra blank lines between testcases.
样例
输入
4 Emma Sue Billy Bob Thornton Joe Cassius Clay hh.h 1 4 Emma Sue Billy Bob Thornton Joe Cassius Clay hh.h 4 6 Jack Dempsey Joe Louis Rocky Marciano Cassius Clay George Foreman Mike Tyson h.hhhh 500
输出
Billy Bob Thornton Joe Mike Tyson