比赛 |
NOIP水题争霸赛 |
评测结果 |
AAWAWWWWWW |
题目名称 |
打扑克 |
最终得分 |
30 |
用户昵称 |
kirikko |
运行时间 |
0.022 s |
代码语言 |
C++ |
内存使用 |
0.19 MiB |
提交时间 |
2018-02-11 21:25:11 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int t,a[20];
void init(){
scanf("%d",&t);
}
void run(){
int n;
for(int p=1;p<=t;p++){
bool ok=false;
memset(a,0,sizeof(a));
scanf("%d",&n);
for(int i=1;i<=n;i++){
int q;
scanf("%d",&q),a[q]++;
if(a[q]>4){
printf("cheat\n");ok=true;break;
}
}
if(ok) continue;
for(int i=3;i<=13;i++){
if(a[i]==4){
printf("%d\n",i);ok=true; break;
}
}
if(ok) continue;
for(int i=2;i>=1;i--){
if(a[i]==4){
printf("%d\n",i);ok=true; break;
}
}
if(ok) continue;
printf("no bomb\n");
}
}
int main(){
freopen("poker1.in","r",stdin);
freopen("poker1.out","w",stdout);
init();
run();
return 0;
}