记录编号 334234 评测结果 WAAAAAWAAAAATT
题目名称 子序列 最终得分 71
用户昵称 GravatarAeons 是否通过 未通过
代码语言 C++ 运行时间 2.018 s
提交时间 2016-10-31 20:18:49 内存使用 0.32 MiB
显示代码纯文本
    #include <fstream>
    #include <string>
    using namespace std;
    ifstream fin("subsequence.in");
    ofstream fout("subsequence.out");
    string n;
    int main()
    {
    int m;
    fin>>n>>m;
    bool e=false;
    int i,j;
    for(i=1;i<=m;i++)
    {
    string k;
    fin>>k;
    int l1,l2;
    l1=k.length();
    l2=n.length();
    for(j=0;j<l2-l1+1;j++)
    {
    e=false;
    if(n.substr(j,l1)==k)
    {
    e=true;
    fout<<"Yes"<<endl;
    break;
    }
    }
    if(!e)
    fout<<"No"<<endl;
    }
    fin.close();
    fout.close();
    return 0;
    }