Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
116319 | 林泽豪 | 判断子序列 | C++ | 通过 | 100 | 0 MS | 260 KB | 308 | 2023-12-16 10:26:42 |
#include<bits/stdc++.h> using namespace std; int w[1000],f[1000][1000]; int main(){ int m,n=0; char a[1001],c[10001]; cin>>a>>c; int o=0; for(int i=0;i<=strlen(c)-1;i++){ if(c[i]==a[o]){ o++; if(o==strlen(a)-1){ cout<<"true"; return 0; } } } cout<<"false"; return 0; }