結果

問題 No.227 簡単ポーカー
ユーザー tabataba
提出日時 2024-08-30 09:44:03
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 826 bytes
コンパイル時間 8,090 ms
コンパイル使用メモリ 166,600 KB
実行使用メモリ 185,352 KB
最終ジャッジ日時 2024-08-30 09:44:25
合計ジャッジ時間 10,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
30,720 KB
testcase_01 AC 61 ms
30,848 KB
testcase_02 AC 62 ms
30,720 KB
testcase_03 AC 62 ms
30,580 KB
testcase_04 AC 61 ms
30,848 KB
testcase_05 AC 61 ms
30,848 KB
testcase_06 AC 62 ms
30,848 KB
testcase_07 AC 63 ms
30,720 KB
testcase_08 AC 65 ms
30,720 KB
testcase_09 AC 61 ms
30,720 KB
testcase_10 AC 64 ms
30,692 KB
testcase_11 AC 62 ms
30,840 KB
testcase_12 AC 62 ms
30,848 KB
testcase_13 AC 62 ms
185,352 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (132 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
public class Program
{
    static void Main()
    {
        var c = ReadLineLong();
        var s = new Dictionary<long, long>();
        foreach (var i in c)
        {
            if (s.ContainsKey(i))
            {
                s[i]++;
            }
            else
            {
                s[i] = 1;
            }
        }
        var r = (s.Count(), s.Values.Max()) switch
        {
            (2, 3) => "FULL HOUSE", // aaa,bb
            (3, 3) => "THREE CARD",// aaa,b,c
            (3, _) => "TWO PAIR",// aa,bb,c
            (4, _) => "ONE PAIR",// aa,b,c,d
            _ => "NO HAND",// a,b,c,d,e
        };
        Console.WriteLine(r);
    }

    static long[] ReadLineLong()
    {
        var s = Console.ReadLine() ?? "";
        return s.Split(' ').Select(long.Parse).ToArray();
    }
}
0