結果

問題 No.227 簡単ポーカー
ユーザー kmtrc130kmtrc130
提出日時 2019-03-18 15:40:18
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 1,521 bytes
コンパイル時間 970 ms
コンパイル使用メモリ 114,028 KB
実行使用メモリ 25,208 KB
最終ジャッジ日時 2024-07-18 10:19:44
合計ジャッジ時間 1,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,004 KB
testcase_01 AC 23 ms
25,008 KB
testcase_02 AC 23 ms
24,876 KB
testcase_03 AC 24 ms
25,136 KB
testcase_04 AC 23 ms
25,080 KB
testcase_05 AC 26 ms
25,208 KB
testcase_06 AC 28 ms
25,140 KB
testcase_07 AC 27 ms
24,876 KB
testcase_08 AC 24 ms
22,964 KB
testcase_09 AC 25 ms
25,008 KB
testcase_10 AC 24 ms
24,948 KB
testcase_11 AC 25 ms
24,880 KB
testcase_12 AC 25 ms
24,880 KB
testcase_13 AC 24 ms
22,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    enum Role
    {
        NO_HAND,
        ONE_PAIR,
        TWO_PAIR,
        THREE_CARD,
        FULL_HOUSE
    }

    public void Solve()
    {
        int[] A = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray();

        int[] cards = new int[14];
        string ans = DisplayRole(Role.NO_HAND);

        for (int i = 0; i < A.Length; i++)
        { cards[A[i]]++; }

        for (int i = 0; i < cards.Length; i++)
        {
            if (cards[i] == 0) continue;

            if (cards[i] == 2)
            {
                if (ans == DisplayRole(Role.ONE_PAIR)) { ans = DisplayRole(Role.TWO_PAIR); }
                else if (ans == DisplayRole(Role.THREE_CARD)) { ans = DisplayRole(Role.FULL_HOUSE); }
                else
                {
                    ans =
                        DisplayRole(Role.ONE_PAIR);
                }
            }
            else if (cards[i] == 3)
            {
                if (ans == DisplayRole(Role.ONE_PAIR)) { ans = DisplayRole(Role.FULL_HOUSE); }
                else { ans = DisplayRole(Role.THREE_CARD); }
            }
        }

        Console.WriteLine(ans);
    }
    private static string DisplayRole(Role role)
    {
        string[] roleName = { "NO HAND", "ONE PAIR", "TWO PAIR", "THREE CARD", "FULL HOUSE" };
        return roleName[(int)role];
    }

    static void Main()
    {
        var solver = new Program();
        solver.Solve();
    }
}
0