結果

問題 No.227 簡単ポーカー
ユーザー gemmarogemmaro
提出日時 2020-04-19 19:58:51
言語 Elixir
(1.18.1)
結果
AC  
実行時間 576 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 1,179 ms
コンパイル使用メモリ 62,700 KB
実行使用メモリ 54,988 KB
最終ジャッジ日時 2024-12-31 04:29:55
合計ジャッジ時間 10,315 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 568 ms
54,460 KB
testcase_01 AC 556 ms
54,164 KB
testcase_02 AC 562 ms
54,164 KB
testcase_03 AC 565 ms
54,596 KB
testcase_04 AC 564 ms
54,120 KB
testcase_05 AC 564 ms
53,908 KB
testcase_06 AC 565 ms
54,260 KB
testcase_07 AC 575 ms
54,404 KB
testcase_08 AC 576 ms
54,968 KB
testcase_09 AC 564 ms
54,988 KB
testcase_10 AC 564 ms
54,164 KB
testcase_11 AC 572 ms
54,448 KB
testcase_12 AC 564 ms
53,984 KB
testcase_13 AC 569 ms
53,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.trim()
    |> String.split()
    |> Enum.map(&String.to_integer/1)
    |> solve
    |> IO.puts()
  end

  def solve(a) do
    a
    |> Enum.group_by(& &1)
    |> Map.values()
    |> Enum.map(&length/1)
    |> Enum.sort()
    |> judge
  end

  def judge(l) do
    case l 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