比赛 |
CSP2023-J模拟赛 |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
切分子串 |
最终得分 |
100 |
用户昵称 |
袁书杰 |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2023-10-18 18:37:09 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
string s,t;
int ans;
int main(){
freopen("cutstring.in","r",stdin);
freopen("cutstring.out","w",stdout);
ios::sync_with_stdio(false);
cin.tie(0),cout.tie(0);
cin>>s>>t;
t+="";
int len=t.size()-1;
for(int i=1;i<=len;i++){
string t1="",t2="";
for(int j=0;j<i;j++){
t1+=t[j];
}
for(int j=i;j<=len;j++){
t2+=t[j];
}
int find1=s.find(t1,0);
int find2=s.find(t2,0);
if(find1!=-1&&find2!=-1){
ans++;
}
}
cout<<ans;
return 0;
}