小红书3.26笔试
uu们帮我看看第一题这么做为啥不行啊,只通过了9%
N = input()
s = input()
res = []
map = {
'a':'x',
'b':'y',
'c':'z',
'd':'a',
'e':'b',
'f':'c',
'g':'d',
'h':'e',
'i':'f',
'j':'g',
'k':'h',
'l':'i',
'm':'j',
'n':'k',
'o':'l',
'p':'m',
'q':'n',
'r':'o',
's':'p',
't':'q',
'u':'r',
'v':'s',
'w':'t',
'x':'u',
'y':'v',
'z':'w',
}
for i in s:
res.append(map[i])
print(''.join(res))
#悬赏#