1656.Keyboard

Time Limit: 1s Memory Limit: 256MB

Our good friend Mole is trying to code a big message. He is typing on an unusual keyboard with characters arranged in following way:

qwertyuiop
asdfghjkl;
zxcvbnm,./

Unfortunately Mole is blind, so sometimes it is problem for him to put his hands accurately. He accidentally moved both his hands with one position to the left or to the right. That means that now he presses not a button he wants, but one neighboring button (left or right, as specified in input).

We have a sequence of characters he has typed and we want to find the original message.

Input Format(From the terminal/stdin)

First line of the input contains one letter describing direction of shifting ('L' or 'R' respectively for left or right).

Second line contains a sequence of characters written by Mole. The size of this sequence will be no more than 100. Sequence contains only symbols that appear on Mole's keyboard. It doesn't contain spaces as there is no space on Mole's keyboard.

It is guaranteed that even though Mole hands are moved, he is still pressing buttons on keyboard and not hitting outside it.

Output Format(To the terminal/stdout)

Print a line that contains the original message.

Sample Input 1

Copy
R
s;;upimrrfod;pbr
 \n
                \n

Sample Output 1

Copy
allyouneedislove
                \n

Sample Input 2

Copy
2 2 1
ab
cd
1
e
 · · \n
  \n
  \n
 \n
 \n

Sample Output 2

Copy
-1
  \n

Sample Input 3

Copy
2 2 1
ab
cS
5
abcBA
 · · \n
  \n
  \n
 \n
     \n

Sample Output 3

Copy
1
 \n

Sample Input 4

Copy
3 9 4
qwertyuio
asdfghjkl
SzxcvbnmS
35
TheQuIcKbRoWnFOXjummsovertHeLazYDOG
 · · \n
         \n
         \n
         \n
  \n
                                   \n

Sample Output 4

Copy
2
 \n

Submit

请先 登录

© 2025 FAQs