結果
| 問題 |
No.227 簡単ポーカー
|
| コンテスト | |
| ユーザー |
cowgirl
|
| 提出日時 | 2018-09-29 20:10:21 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 498 bytes |
| コンパイル時間 | 1,587 ms |
| コンパイル使用メモリ | 169,016 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-12 08:27:52 |
| 合計ジャッジ時間 | 2,247 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
std::vector<int> a(14);
for(int i=0; i<5; i++){
int b;
cin >> b;
a[b]++;
}
int tw=0,th=0;
for(int i=0; i<14; i++){
if(a[i] == 2) tw++;
else if(a[i] == 3) th++;
}
string s;
if(th==1 && tw==1) s = "FULL HOUSE";
else if(th==1) s = "THREE CARD";
else if(tw==2) s= "TWO PAIR";
else if(tw==1) s = "ONE PAIR";
else s = "NO HAND";
cout << s << endl;
}
cowgirl