Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
116221 | 吴宗桦 | 判断子序列 | C++ | 解答错误 | 50 | 0 MS | 252 KB | 366 | 2023-12-16 09:23:40 |
#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=1;c<=a;c++) { e=0; for(d=f;d<=b;d++) if(y[d]==x[c]) { e=1; f=d; break; } if(e==0) { cout<<"false"; return 0; } } cout<<"ture"; return 0; }