Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
119674 李昊宇 字符串包含判断 C++ Accepted 1 MS 276 KB 213 2025-05-18 13:38:26

Tests(10/10):


Code:

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