文章

99

粉丝

120

获赞

8

访问

96.9k

头像
P1229 遍历问题
备考心情
发布于2024年8月27日 12:04
阅读数 952

#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
int ans;
char str1[233],str2[233];
int main()
{
        scanf("%s",str1);
        scanf("%s",str2);
        for(int i=0;i<strlen(str1);i++)
         for(int j=1;j<strlen(str2);j++)
          if(str1[i]==str2[j]&&str1[i+1]==str2[j-1])
           ans++;
        printf("%d",1<<ans);
        return 0;
}
登录查看完整内容


登录后发布评论

暂无评论,来抢沙发