結果
問題 | No.227 簡単ポーカー |
ユーザー | cww |
提出日時 | 2016-06-06 12:32:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 669 bytes |
コンパイル時間 | 1,540 ms |
コンパイル使用メモリ | 170,588 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 01:01:08 |
合計ジャッジ時間 | 2,140 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
ソースコード
#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; }