結果

問題 No.227 簡単ポーカー
ユーザー asatakeasatake
提出日時 2018-08-13 09:29:58
言語 Elixir
(1.18.1)
結果
AC  
実行時間 569 ms / 5,000 ms
コード長 569 bytes
コンパイル時間 1,065 ms
コンパイル使用メモリ 66,828 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-12-31 02:13:39
合計ジャッジ時間 9,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
53,940 KB
testcase_01 AC 546 ms
53,908 KB
testcase_02 AC 569 ms
53,848 KB
testcase_03 AC 542 ms
53,616 KB
testcase_04 AC 540 ms
54,000 KB
testcase_05 AC 548 ms
54,280 KB
testcase_06 AC 539 ms
54,048 KB
testcase_07 AC 540 ms
54,000 KB
testcase_08 AC 546 ms
54,116 KB
testcase_09 AC 545 ms
54,040 KB
testcase_10 AC 537 ms
53,996 KB
testcase_11 AC 545 ms
54,308 KB
testcase_12 AC 540 ms
54,340 KB
testcase_13 AC 558 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main() do
    a = IO.gets("") |> String.trim |> String.split
    IO.puts judge(count(%{}, a))
  end

  def count(m, []) do
    m
  end

  def count(m, [h | t]) do
    new_m = case Map.has_key?(m, h) do
      false -> Map.put_new(m, h, 1)
      true -> Map.update!(m, h, fn x -> x + 1 end)
    end
    count(new_m, t)
  end

  def judge(m) do
    case Map.values(m) |> Enum.sort do
      [2, 3] -> "FULL HOUSE"
      [1, 1, 3] -> "THREE CARD"
      [1, 2, 2] -> "TWO PAIR"
      [1, 1, 1, 2] -> "ONE PAIR"
      _ -> "NO HAND"
    end
  end

end
0