結果

問題 No.227 簡単ポーカー
ユーザー cowgirlcowgirl
提出日時 2018-09-29 20:10:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 1,631 ms
コンパイル使用メモリ 164,096 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-20 13:03:09
合計ジャッジ時間 1,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    std::vector<int> a(14);
    for(int i=0; i<5; i++){
        int b;
        cin >> b;
        a[b]++;
    }
    
    int tw=0,th=0;
    for(int i=0; i<14; i++){
        if(a[i] == 2) tw++;
        else if(a[i] == 3) th++;
    }
    string s;
    if(th==1 && tw==1) s = "FULL HOUSE";
    else if(th==1) s = "THREE CARD";
    else if(tw==2) s= "TWO PAIR";
    else if(tw==1) s = "ONE PAIR";
    else s = "NO HAND";
    cout << s << endl;
}
0