Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146590 王培臻 字符串拼接 C++ Accepted 0 MS 288 KB 176 2026-01-29 13:41:52

Tests(10/10):


Code:

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