Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
60297 xujindong J1 C++ 通过 100 13 MS 284 KB 294 2022-10-15 11:23:34

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int t; string a,b; bool solve(){ for(int i=0;i<a.size();i+=b.size())for(int j=0;j<b.size();j++)if(i+j>=a.size()||a[i+j]!=b[j])return 0; return 1; } int main(){ cin>>t; while(t--)cin>>a>>b,puts(solve()?"YES":"NO"); return 0; }


测评信息: