結果

問題 No.227 簡単ポーカー
ユーザー 3qvwn3qvwn
提出日時 2019-07-08 00:50:57
言語 Elixir
(1.18.1)
結果
RE  
実行時間 -
コード長 422 bytes
コンパイル時間 999 ms
コンパイル使用メモリ 63,968 KB
実行使用メモリ 58,344 KB
最終ジャッジ日時 2024-12-31 03:22:42
合計ジャッジ時間 10,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 532 ms
54,956 KB
testcase_02 AC 521 ms
53,912 KB
testcase_03 AC 533 ms
54,936 KB
testcase_04 AC 525 ms
53,904 KB
testcase_05 AC 520 ms
55,340 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do 
  def main do
    IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer/1) |> Enum.group_by(fn x -> x end) |> Enum.map(fn {_, value} -> Enum.count(value) end) |> judge |> IO.puts
  end
  
  def judge([3,2]), do: "FULL HOUSE"
  def judge([3,1,1]), do: "THREE CARD"
  def judge([2,2,1]), do: "TWO PAIR"
  def judge([2,1,1,1]), do: "ONE PAIR"
  def judge([1,1,1,1,1]), do: "NO HAND"
end
0