Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
116318 | 蒋沛霖 | 判断子序列 | C++ | 通过 | 100 | 0 MS | 248 KB | 367 | 2023-12-16 10:26:18 |
#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<<"true"; return 0; }