| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151636 | Kevin | 墓碑上的字符 | C++ | Accepted | 1 MS | 276 KB | 211 | 2026-04-15 22:43:56 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; string a,b; cin>>n; for(int i=1;i<=n;i++){ cin>>a>>b; int j=(a.size()/2); a.insert(j,b); cout<<a<<endl; } return 0; }