1 条题解
-
0
这题连n都是多余的
/* 备注: ASCII码: A:65 a:97 A-->a +32 0 48 头文件:#include<windows.h> #include<conio.h> system("color 6E):金色背景 system("cls"):清屏 system("pause"):暂停程序 system("title _____"):更改程序名 _kbhit():判断是否有读入键盘 _getch():读入键盘 \033[__;__;__......;m;:更改结束图样 Sleep():休息程序 */ #include<bits/stdc++.h> using namespace std; const int N=1e5+5,INF=0x3f3f3f3f; typedef long long LL; string a,b; int n,ans; int main() { getline(cin,a); a = " "+a+" "; cin>>n; getline(cin,b); while(cin>>b){ b = " "+b+" "; if(a.find(b)!=a.npos){ ans++; getline(cin,b); } } cout<<ans; return 0; }
- 1
信息
- ID
- 3238
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 8
- 标签
- (无)
- 递交数
- 387
- 已通过
- 74
- 上传者