Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
60390 | alex_liu | J1 | C++ | 通过 | 100 | 20 MS | 272 KB | 232 | 2022-10-15 11:29:21 |
#include<bits/stdc++.h> using namespace std; int t; string a,b; int main(){ cin>>t; while(t--){ cin>>a>>b; while(a.find(b)==0)a.erase(0,b.size()); if(a.size()==0)puts("YES"); else puts("NO"); } return 0; }