| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134973 | 叶航帅 | 06字符后移 | Python3 | Accepted | 53 MS | 3768 KB | 354 | 2025-11-01 21:41:19 |
s = input().strip() dashabi = [] for char in s: if 'a' <= char <= 'z': dashabi.append(char) if len(dashabi) == 4: break def shift_char(c): if c == 'z': return 'a' return chr(ord(c) + 1) shifted_dashabi = [shift_char(c) for c in dashabi] jieguo = ' '.join(shifted_dashabi) print(jieguo)