結果

問題 No.227 簡単ポーカー
ユーザー asatakeasatake
提出日時 2018-08-13 09:29:58
言語 Elixir
(1.16.2)
結果
AC  
実行時間 606 ms / 5,000 ms
コード長 569 bytes
コンパイル時間 1,064 ms
コンパイル使用メモリ 62,828 KB
実行使用メモリ 55,400 KB
最終ジャッジ日時 2024-06-09 22:08:57
合計ジャッジ時間 10,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 560 ms
55,400 KB
testcase_01 AC 553 ms
53,732 KB
testcase_02 AC 566 ms
53,740 KB
testcase_03 AC 559 ms
54,632 KB
testcase_04 AC 581 ms
55,280 KB
testcase_05 AC 574 ms
53,992 KB
testcase_06 AC 569 ms
53,864 KB
testcase_07 AC 575 ms
54,212 KB
testcase_08 AC 606 ms
53,772 KB
testcase_09 AC 563 ms
54,372 KB
testcase_10 AC 562 ms
53,728 KB
testcase_11 AC 582 ms
54,092 KB
testcase_12 AC 582 ms
54,356 KB
testcase_13 AC 564 ms
53,868 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