結果
| 問題 |
No.227 簡単ポーカー
|
| コンテスト | |
| ユーザー |
kaito_tateyama
|
| 提出日時 | 2017-08-11 13:43:16 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 995 bytes |
| コンパイル時間 | 673 ms |
| コンパイル使用メモリ | 77,944 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-12 20:35:10 |
| 合計ジャッジ時間 | 1,467 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 |
ソースコード
#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;
}
kaito_tateyama