結果
| 問題 | No.227 簡単ポーカー | 
| コンテスト | |
| ユーザー |  d2verb | 
| 提出日時 | 2015-12-21 08:25:40 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 690 bytes | 
| コンパイル時間 | 540 ms | 
| コンパイル使用メモリ | 67,656 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-09-17 21:16:29 | 
| 合計ジャッジ時間 | 1,153 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 14 | 
ソースコード
#include <iostream>
#include <map>
using namespace std;
int main(void) {
  int a;
  map<int, int> m;
  for (int i = 0; i < 5; ++i) {
    cin >> a;
    m[a]++;
  }
  auto it = m.begin();
  if (m.size() == 2 && ((*it).second == 2 || (*it).second == 3)) {
    cout << "FULL HOUSE" << endl;
  } else if (m.size() == 3) {
    bool three = false;
    int cnt = 0;
    for (auto i = it; i != m.end(); i++) {
      three |= (*i).second == 3;
      cnt += (*i).second == 2;
    }
    if (three) cout << "THREE CARD" << endl;
    else if (cnt == 2) cout << "TWO PAIR" << endl;
  } else if (m.size() == 4) {
    cout << "ONE PAIR" << endl;
  } else {
    cout << "NO HAND" << endl;
  }
  return 0;
}
            
            
            
        