結果
| 問題 | No.227 簡単ポーカー |
| コンテスト | |
| ユーザー |
cowgirl
|
| 提出日時 | 2018-09-29 20:09:43 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 499 bytes |
| コンパイル時間 | 1,498 ms |
| コンパイル使用メモリ | 167,756 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-12 08:26:44 |
| 合計ジャッジ時間 | 2,116 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 WA * 4 |
ソースコード
#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 HANDS";
cout << s << endl;
}
cowgirl