結果

問題 No.227 簡単ポーカー
ユーザー swdamdrswdamdr
提出日時 2017-02-15 16:11:05
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 943 bytes
コンパイル時間 5,397 ms
コンパイル使用メモリ 113,176 KB
実行使用メモリ 27,420 KB
最終ジャッジ日時 2024-06-09 12:23:54
合計ジャッジ時間 1,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,008 KB
testcase_01 AC 26 ms
25,152 KB
testcase_02 AC 26 ms
25,144 KB
testcase_03 AC 24 ms
25,272 KB
testcase_04 AC 25 ms
25,384 KB
testcase_05 AC 26 ms
27,420 KB
testcase_06 AC 27 ms
25,368 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 25 ms
27,192 KB
testcase_10 AC 25 ms
27,188 KB
testcase_11 AC 25 ms
25,136 KB
testcase_12 RE -
testcase_13 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;
using System.Collections.Generic;

class Program
{
    static void Main(string[] args)
    {
        int[] card = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
        string ans = "NO HAND";

        int[] ary = Console.ReadLine().Split().Select(int.Parse).ToArray();


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

        Array.Sort(card);

        if (card[12] == 3)
        {
            if (card[11] == 2)
            {
                ans = "FULL HOUSE";
            }
            else
            {
                ans = "THREE CARD";
            }
        }
        else if (card[12] == 2)
        {
            if (card[11] == 2)
            {
                ans = "TWO PAIR";
            }
            else
            {
                ans = "ONE PAIR";
            }
        }

        Console.WriteLine(ans);
        Console.Read();
    }
}
0