Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
115178 吴梓玄 字符串包含判断 C++ Accepted 1 MS 272 KB 211 2025-03-29 17:07:04

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; string s1, s2; int main() { cin >> s1 >> s2; if(s1.find(s2) == string::npos) cout << "no" << endl; else cout << "yes" << endl; return 0; }