Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
115179 | 吴梓玄 | 字符串包含判断 | C++ | Accepted | 1 MS | 272 KB | 208 | 2025-03-29 17:09:06 |
#include<bits/stdc++.h> using namespace std; string s1, s2; int main() { cin >> s1 >> s2; if(s1.find(s2) >= s1.size()) cout << "no" << endl; else cout << "yes" << endl; return 0; }