結果

問題 No.227 簡単ポーカー
ユーザー gemmarogemmaro
提出日時 2020-04-19 19:58:51
言語 Elixir
(1.16.2)
結果
AC  
実行時間 593 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 1,053 ms
コンパイル使用メモリ 62,816 KB
実行使用メモリ 54,736 KB
最終ジャッジ日時 2024-06-09 23:45:11
合計ジャッジ時間 9,713 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 593 ms
53,852 KB
testcase_01 AC 549 ms
54,620 KB
testcase_02 AC 551 ms
54,208 KB
testcase_03 AC 542 ms
54,188 KB
testcase_04 AC 535 ms
54,104 KB
testcase_05 AC 552 ms
54,736 KB
testcase_06 AC 569 ms
54,564 KB
testcase_07 AC 552 ms
54,336 KB
testcase_08 AC 538 ms
54,240 KB
testcase_09 AC 533 ms
54,260 KB
testcase_10 AC 543 ms
54,152 KB
testcase_11 AC 538 ms
54,428 KB
testcase_12 AC 544 ms
54,236 KB
testcase_13 AC 529 ms
54,432 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