Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
157614 丁陆永新 字符串拼接 C++ Accepted 1 MS 272 KB 203 2026-08-08 09:50:04

Tests(10/10):


Code:

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