记录编号 229902 评测结果 AAAAAAAAAA
题目名称 班花选举 最终得分 100
用户昵称 GravatarSOBER GOOD BOY 是否通过 通过
代码语言 C++ 运行时间 0.203 s
提交时间 2016-02-20 21:09:23 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<queue>
#include<algorithm>
using namespace std;
void panduan(char,char);int tot1=0;int tot2=0;
int main()
{
	freopen("sjb.in","r",stdin);
	freopen("sjb.out","w",stdout);
	int n;cin>>n;
	for(int i=1;i<=n;i++)
	{
		char ch1,ch2;
		cin>>ch1>>ch2;
		panduan(ch1,ch2);
	}if(tot1>tot2) {
	cout<<"ywj wins";
	return 0;}
		if(tot1<tot2) {
		cout<<"ck wins";
		return 0;}
		else cout<<"both ywj and ck win";
	return 0;
	}
	void  panduan(char ch1,char ch2)
	{
		if((ch1=='S'&&ch2=='J')||(ch1=='J'&&ch2=='B')||(ch1=='B'&&ch2=='S'))
		{
			tot1++;
			return;
		}
		if((ch2=='S'&&ch1=='J')||(ch2=='J'&&ch1=='B')||(ch2=='B'&&ch1=='S'))
		{
			tot2++;
			return;
		}
		return;
	}