結果

問題 No.227 簡単ポーカー
ユーザー kaito_tateyamakaito_tateyama
提出日時 2017-08-11 13:43:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 995 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 79,872 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-20 22:16:49
合計ジャッジ時間 1,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;

int main(){


  vector<int> v(5),tmp(4,0);
  for (int i = 0; i < 5; i++) {
    cin >> v[i];
  }
  sort(v.begin(),v.end());

  for (int i = 0; i < 4; i++) {
    if (v[i] == v[i + 1]) {
      tmp[i]++;
    }
  }
  int sum = 0;
  for (int i = 0; i < 4; i++) {
    sum += tmp[i];
  }
  if (sum == 0||sum == 4) {
    cout << "NO HAND" << "\n";
  }else if (sum == 1) {
    cout << "ONE PAIR" << "\n";
  }else if (sum == 2) {
    if (tmp[1] == 0 && tmp[3] == 0) {
      cout << "TWO PAIR" << "\n";
    }else if (tmp[1] == 0 && tmp[2] == 0) {
      cout << "TWO PAIR" << "\n";
    }else if (tmp[0] == 0 && tmp[2] == 0) {
      cout << "TWO PAIR" << "\n";
    }else{
      cout << "THREE CARD" << "\n";
    }
  }else if (sum == 3) {
      if (tmp[2] == 0 || tmp[1] == 0) {
        cout << "FULL HOUSE" << "\n";
      }else{
        cout << "NO HAND" << "\n";
      }
  }

  return 0;
}
0