Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146577 刘梓含 字符串拼接 C++ Accepted 1 MS 288 KB 170 2026-01-29 13:39:21

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main (){ char a[10001],s[10001]; int m; cin >> a >> s >> m; strcat(a,s); cout << a[m - 1]; return 0; }