| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 133518 | 石水生 | 墓碑上的字符 | C++ | Accepted | 1 MS | 272 KB | 229 | 2025-10-19 10:23:18 | 
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ string s; string s1; cin>>s>>s1; //cout<<s<<" "<<s1<<endl; s.insert(s.length()/2,s1); cout<<s<<endl; } }