比赛 |
NOIP水题争霸赛 |
评测结果 |
AAAAAAAAAA |
题目名称 |
打扑克 |
最终得分 |
100 |
用户昵称 |
HtBest |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2018-02-11 19:34:53 |
显示代码纯文本
#define _CRT_SECURE_NO_DEPRECATE
/************************
*创建时间:2018 02 11
*文件类型:源代码文件
*题目来源:2018寒假・NOI导刊
*采用算法:模拟
*作者:HtBest
************************/
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <algorithm>
#include <string.h>
using namespace std;
int n,m;
/* Variable explain:
*/
void read()
{
freopen("poker1.in","r",stdin);
freopen("poker1.out","w",stdout);
scanf("%d",&m);
return;
}
int HtBest()
{
read();
for(int i=0;i<m;++i)
{
scanf("%d",&n);
int a[20]={0},ls1;
for(int j=0;j<n;++j)
{
scanf("%d",&ls1);
a[ls1]++;
}
ls1=0;
for(int j=1;j<=13;++j)if(a[j]>4){printf("cheat\n");ls1=1;break;}
if(ls1==1) continue;
for(int j=3;1;++j)
{
if(a[j]==4) {printf("%d\n",j);break;}
if(j==2) {printf("no bomb\n");break;}
if(j==13) j=0;
}
}
return 0;
}
int AC=HtBest();
int main(){;}