Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
3470 | 孙浚轩 | 字符串包含判断 | C++ | Wrong Answer | 0 MS | 260 KB | 172 | 2024-06-08 17:24:11 |
#include<iostream> using namespace std; int main(){ string a,b; cin>>a>>b; if(a.find(b)==4294967295) cout<<"no"; else cout<<"yes"; return 0; }
------Input------
fdcdgtofze dgtf
------Answer-----
no
------Your output-----
yes