結果

問題 No.227 簡単ポーカー
ユーザー noriocnorioc
提出日時 2024-07-24 04:54:32
言語 Elixir
(1.16.2)
結果
AC  
実行時間 647 ms / 5,000 ms
コード長 486 bytes
コンパイル時間 1,757 ms
コンパイル使用メモリ 61,280 KB
実行使用メモリ 55,352 KB
最終ジャッジ日時 2024-07-24 04:54:45
合計ジャッジ時間 12,418 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 615 ms
53,472 KB
testcase_01 AC 636 ms
53,840 KB
testcase_02 AC 601 ms
54,800 KB
testcase_03 AC 632 ms
54,676 KB
testcase_04 AC 615 ms
53,484 KB
testcase_05 AC 643 ms
54,504 KB
testcase_06 AC 613 ms
54,576 KB
testcase_07 AC 641 ms
54,536 KB
testcase_08 AC 610 ms
53,740 KB
testcase_09 AC 643 ms
53,864 KB
testcase_10 AC 617 ms
54,072 KB
testcase_11 AC 642 ms
53,620 KB
testcase_12 AC 619 ms
53,940 KB
testcase_13 AC 647 ms
55,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    a = li()
    IO.puts hand(a)
  end

  def hand(a) do
    xs = Enum.frequencies(a) |> Map.values |> Enum.sort
    case xs 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

  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
end
0