2724. Cryptoquote

单点时限: 2.0 sec

内存限制: 256 MB

A cryptoquote is a simple encoded message where one letter is simply replaced by another

throughout the message. For example:

Encoded: HPC PJVYMIY

Decoded: ACM CONTEST

In the example above, H=A, P=C, C=M, J=O, V=N, Y=T, M=E and I=S. For this problem, you will decode messages.

输入格式

The first line of input contains a single integer N, (1 <= N <= 1000) which is the number of data sets that follow. Each data set consists of two lines of input. The first line is the encoded message. The second line is a 26 character string of upper case letters giving the character mapping for each letter of the alphabet: the first character gives the mapping for A, the second for B and so on. Only upper case letters will be used. Spaces may appear in the encoded message, and should be preserved in the output string.

输出格式

For each data set, you should generate one line of output with the following values: The data set number as a decimal integer (start counting at one), a space and the decoded message.

样例

Input
2
HPC PJVYMIY
BLMRGJIASOPZEFDCKWYHUNXQTV
FDY GAI BG UKMY
KIMHOTSQYRLCUZPAGWJNBVDXEF
Output
1 ACM CONTEST
2 THE SKY IS BLUE

37 人解决,77 人已尝试。

42 份提交通过,共有 171 份提交。

5.5 EMB 奖励。

创建: 14 年,7 月前.

修改: 9 月,2 周前.

最后提交: 2 月,3 周前.

来源: Greater New York Regional 2008