Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
135918 王丞杰 字符串包含判断 C++ Wrong Answer 1 MS 276 KB 171 2025-11-08 17:22:51

Tests(1/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { string s,s1; cin>>s>>s1; int a=-1; a=s1.find(s1); if(a !=-1) cout<<"yes"; else cout<<"no"; }


Run Info:

------Input------
fdcdgtofze dgtf
------Answer-----
no
------Your output-----
yes