Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
112294 | 黎瑾萱 | 字符串拼接 | C++ | Wrong Answer | 1 MS | 272 KB | 212 | 2025-03-09 12:12:05 |
#include <bits/stdc++.h> using namespace std; int main() { string a; string b; cin>>a>>b; int len = a.size(); int loo = b.size(); string m = a+b; int n; cin>>n; cout<<m[n]; return 0; }
------Input------
executing users 13
------Answer-----
r
------Your output-----
s