Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
86620 朱正天 墓碑上的字符 Python3 Accepted 32 MS 3760 KB 170 2024-07-27 08:17:04

Tests(2/2):


Code:

n = int(input()) res = [] for i in range(n): a = input() b = input() c = a[0:len(a)//2]+b+a[len(a)//2::] res.append(c) for i in res: print(i)