Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134710 6倪葭轩 06字符后移 Python3 Accepted 54 MS 3756 KB 162 2025-11-01 11:37:25

Tests(10/10):


Code:

s = input().split() r = [] for c in s: if c == 'z': r.append('a') else: n = chr(ord(c) + 1) r.append(n) print(' '.join(r))