結果

問題 No.227 簡単ポーカー
ユーザー MikuroXinaMikuroXina
提出日時 2022-12-12 01:25:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 792 bytes
コンパイル時間 923 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-23 19:32:22
合計ジャッジ時間 1,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 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 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:21:15: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   21 |     for (auto [_key, value] : amount_by_card) {
      |               ^

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <map>

using namespace std;

int main() {
    int a[5] = {};
    for (auto &e : a) {
        cin >> e;
    }
    
    sort(a, a + 5);
    
    map<int, int> amount_by_card{};
    for (auto e : a) {
        ++amount_by_card[e];
    }
    
    map<int, int> card_by_amount{};
    for (auto [_key, value] : amount_by_card) {
        ++card_by_amount[value];
    }
    
    if (card_by_amount[3] == 1 && card_by_amount[2] == 1) {
        cout << "FULL HOUSE\n";
    } else if (card_by_amount[3] == 1) {
        cout << "THREE CARD\n";
    } else if (card_by_amount[2] == 2) {
        cout << "TWO PAIR\n";
    } else if (card_by_amount[2] == 1) {
        cout << "ONE PAIR\n";
    } else {
        cout << "NO HAND\n";
    }
    
    return 0;
}
0