Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
52426 AK2022071318 修复符文 C++ 解答错误 15 14 MS 760 KB 476 2022-07-19 12:09:50

Tests(3/20):


#include <bits/stdc++.h> using namespace std; int t,a,b,l; string s1,s2; bool f; bool check() { for(int i=0; i<=l; i++) { f=0; for(int j=i; j<=l+i; j++) if(s1[j]!=s2[j-i]) { f++; break; } if(!f) return 1; } return 0; } int main() { cin>>t; while(t--) { cin>>s1>>s2>>a>>b; l=s1.size()-1; s1+=s1; if(check()) cout<<"yes"<<endl; else cout<<"no"<<endl; } }


测评信息: