結果

問題 No.227 簡単ポーカー
ユーザー cwwcww
提出日時 2016-06-06 12:32:03
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 669 bytes
コンパイル時間 1,648 ms
コンパイル使用メモリ 167,760 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-19 08:25:01
合計ジャッジ時間 2,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define LL long long
#define ULL unsigned long long
#define REP(i,n) for(int i=0; i<(n); i++)
#define REP2(i,x,n) for(int i=x; i<(n); i++)
using namespace std;
int main()
{
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	int N;
	multiset<int> st;
	REP( i, 5 )
	{
		cin >> N;
		st.insert(N);
	}
	int res{};
	for( const auto& x : st )
	{
		if( st.count(x) == 3 )
		{
			res  += 3;
		}
		else if( st.count(x) == 2 )
		{
			res += 2;
		}
		else if( st.count(x) == 1 )
		{
			res += 1;
		}
	}
	cout << ( res == 13 ? "FULL HOUSE" :
			res == 11 ? "THREE CARD" :
			res == 9 ? "TWO PAIR" :
			res == 7 ? "ONE PAIR" :
			"NO HAND" ) << endl;
	return 0;
}
0