记录编号 230125 评测结果 AAAAAAAAAA
题目名称 班花选举 最终得分 100
用户昵称 Gravatar水墨青花 是否通过 通过
代码语言 C++ 运行时间 0.172 s
提交时间 2016-02-21 08:36:30 内存使用 0.19 MiB
显示代码纯文本
#include<iostream>
#include<cstdlib>
#include<cstdio>
#include<cstring>

using namespace std;

int main()
{
	freopen("sjb.in","r",stdin);
	freopen("sjb.out","w",stdout);
	
	int n=0;
	char ch1,ch2;
	int ck=0;	int ywj=0;
	cin>>n;
	for(int i=1;i<=n;i++)
	{
		cin>>ch1;
		cin>>ch2;
		if(ch1=='S')
		{//cout<<"s ";
			if(ch2=='J')
			{
				ywj++;
			}
			if(ch2=='B')
			{
				ck++;
			}
			if(ch2=='S')continue;
		}
		if(ch1=='J')
		{//cout<<"j ";
			if(ch2=='S')
			{
				ck++;
			}
			if(ch2=='B')
			{
				ywj++;
			}
		}
		if(ch1=='B')
		{//cout<<"b ";
			if(ch2=='S')
			{
				ywj++;
			}
			if(ch2=='J')
			{
				ck++;
			}
		}
	}
	
	if(ck>ywj)
	{
		cout<<"ck wins";
		return 0;
	}
	if(ywj>ck)
	{
		cout<<"ywj wins";
		return 0;
	}
	if(ywj==ck)
	{
		cout<<"both ywj and ck win";
		return 0;
	}
	
	
	fclose(stdin);
	fclose(stdout);
	return 0;
}