比赛 |
CSP2023-J模拟赛 |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
切分子串 |
最终得分 |
100 |
用户昵称 |
pcx |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2023-10-18 20:17:45 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
string s,t,t1,t2;
bool a;
int b;
int main(){
freopen("cutstring.in","r",stdin);
freopen("cutstring.out","w",stdout);
cin>>s>>t;
for(int i=1;i<t.size();i++){
t1=t.substr(0,i);
t2=t.substr(i);
for(int j=0;j<s.size();j++){
a=1;
for(int k=0;k<t1.size();k++){
if(t1[k]!=s[k+j]){
a=0;
break;
}
}
if(a){
break;
}
}
if(!a){
continue;
}
for(int j=0;j<s.size();j++){
a=1;
for(int k=0;k<t2.size();k++){
if(t2[k]!=s[k+j]){
a=0;
break;
}
}
if(a){
break;
}
}
if(a){
b++;
}
}
cout<<b;
return 0;
}