Online Judge
Toggle navigation
C++题库系统 OJ
首页
问题列表
状态
排行榜
登录
首页
状态
68315
Run ID
作者
问题
语言
测评结果
Time
Memory
代码长度
提交时间
68315
金浩
墓碑上的字符
Python3
Accepted
28 MS
3752 KB
120
2024-03-23 08:13:37
Tests(2/2):
Code:
n=int(input()) for i in range(n): a=input() b=input() x=int(len(a)/2) s=a[:x]+b+a[x:] print(s)