Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
9484 | 季洁 | 炫耀英文的琦琦 | C++ | 解答错误 | 0 | 0 MS | 252 KB | 336 | 2020-11-14 16:26:54 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,sum=0,v; cin>>n; string s,a,b=""; getline(cin,a); for(int i=0;i<=n;i++){ getline(cin,s); for(int j=0;j<=s.size()-1;j++){ if(s[j]!=' ') b+=s[j]; else{ if((v=b.find(a))!=string::npos) sum++; b=""; } } } cout<<sum; return 0; }