結果

問題 No.227 簡単ポーカー
ユーザー keidenkeiden
提出日時 2024-09-20 11:18:50
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 902 ms / 5,000 ms
コード長 485 bytes
コンパイル時間 12,810 ms
コンパイル使用メモリ 268,388 KB
実行使用メモリ 63,664 KB
最終ジャッジ日時 2024-09-20 11:19:18
合計ジャッジ時間 22,603 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 902 ms
63,176 KB
testcase_01 AC 871 ms
63,508 KB
testcase_02 AC 899 ms
63,480 KB
testcase_03 AC 864 ms
63,452 KB
testcase_04 AC 851 ms
63,332 KB
testcase_05 AC 873 ms
63,492 KB
testcase_06 AC 874 ms
63,384 KB
testcase_07 AC 874 ms
63,208 KB
testcase_08 AC 869 ms
63,348 KB
testcase_09 AC 898 ms
63,664 KB
testcase_10 AC 871 ms
63,404 KB
testcase_11 AC 892 ms
63,656 KB
testcase_12 AC 859 ms
63,312 KB
testcase_13 AC 862 ms
63,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine
import scala.util.chaining._


@main
def yuki227(): Unit =
  val f = (hand: List[Int]) =>
    hand match
      case 3 :: 2 :: _ => "FULL HOUSE"
      case 3 :: _      => "THREE CARD"
      case 2 :: 2 :: _ => "TWO PAIR"
      case 2 :: _      => "ONE PAIR"
      case _           => "NO HAND"
  readLine
  .split("\\s+")
  .toList
  .groupBy(identity)
  .mapValues(_.size)
  .values
  .toList
  .sorted(Ordering[Int].reverse)
  .pipe(f)
  .pipe(println)
0