记录编号 73475 评测结果 AAAAA
题目名称 赵寒烨的热销 T 恤 最终得分 100
用户昵称 Gravatarranto 是否通过 通过
代码语言 C++ 运行时间 0.001 s
提交时间 2013-10-21 19:02:21 内存使用 0.32 MiB
显示代码纯文本
#include <fstream>
#include <string>
#include <algorithm>

using namespace std;

ifstream in("zhy.in");
ofstream out("zhy.out");

int main()
{
	int n,m;
	in>>n>>m;
	int id;
	int rmax(0);
	for(int i=0;i!=n;++i)
	{
		int rtemp(0);
		string t;
		for(int k=0;k!=m;++k)
		{
			in>>t;
			if(t=="nbs")
			{
				out<<3<<endl;
				return 0;
			}
			rtemp+=count(t.begin(),t.end(),'r');
		}
		if(rtemp>rmax)
		{
			rmax=rtemp;
			id=i+1;
		}
	}
	out<<id<<endl;
	return 0;
}