比赛 防止颓废的小练习v0.15 评测结果 WAWAWWWWWW
题目名称 统计单词数 最终得分 20
用户昵称 烟雨 运行时间 0.090 s
代码语言 C++ 内存使用 0.32 MiB
提交时间 2016-10-17 20:21:06
显示代码纯文本
#include<fstream>
#include<cstring>
using namespace std;
ifstream cin("stat.in");
ofstream cout("stat.out");
string a,b,n;
int m=0,shou=-9;
char f;
int main()
{
	cin>>a;
	f='ac';
	if(a[0]>'a')
	{
		b=a;
		b[0]=b[0]-32;
	}
	else
	{
		b=a;
		b[0]=b[0]+32;
	}
	int q=0;
	cin>>f;
	while(f==' ')cin>>f;
	while(cin>>n)
	{
		if(f!='ac')
		{
			n=f;
			f='ac';
		}
		if(n==a||n==b)
		{
			m++;
			if(shou==-9)
			{
				shou=q;
			}
		}
		q++;
	}
	if(m==0)
	{
		cout<<"-1"<<endl;
	}
	else
	{
	    cout<<m<<' '<<shou<<endl;
	}
	cin.close();
	cout.close();
	return 0;
}