1 条题解
-
0chenqianrong LV 5 @ 2021-08-22 17:57:43
#include<bits/stdc++.h> using namespace std; int ans; char str1[233],str2[233]; int main() { cin>>str1>>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; }
- 1
信息
- ID
- 1972
- 难度
- 8
- 分类
- (无)
- 标签
- 递交数
- 11
- 已通过
- 5
- 通过率
- 45%
- 被复制
- 3
- 上传者