记录编号 584533 评测结果 AAAAAAAAAA
题目名称 打扑克 最终得分 100
用户昵称 Gravatar黄天宇 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2023-11-13 15:39:38 内存使用 0.00 MiB
显示代码纯文本
#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;
long long n;
long long m;
long long a;
long long t[25];
bool flag;
bool b;
int main(){
    freopen("poker1.in","r",stdin);
    freopen("poker1.out","w",stdout);
    cin>>m;
    while(m--){
        flag=0;
        b=0;
        memset(t,0,sizeof(t));
        cin>>n;
        for(int i=1;i<=n;i++){
            cin>>a;
            if(a==1) t[15]++;
            if(a==2) t[14]++;
            t[a]++;
        }
        for(int i=3;i<=15;i++){
            if(t[i]>4){
                cout<<"cheat"<<endl;
                flag=1;
                break;
            }
        }
        if(flag) continue;
            for(int i=3;i<=13;i++){
            if(t[i]==4){
                cout<<i<<endl;
                b=1;
                break;
            }
        }
        if(b) continue;
        if(t[14]==4){
            cout<<2<<endl;
            continue;
        }else
        if(t[15]==4){
            cout<<1<<endl;
            continue;
        }
        cout<<"no bomb"<<endl;
   }
    return 0;
}