Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
116265 | 吴宗桦 | 判断子序列 | C++ | 解答错误 | 50 | 0 MS | 248 KB | 367 | 2023-12-16 09:56:39 |
#include<iostream> #include<cstring> using namespace std; int a,b,c,d,e,f=-1; char x[1005],y[1005]; int main() { cin>>x>>y; a=strlen(x); b=strlen(y); for(c=0;c<a;c++) { e=0; for(d=f+1;d<b;d++) if(x[c]==y[d]) { e=1; f=d; break; } if(e==0) { cout<<"false"; return 0; } } cout<<"ture"; return 0; }