結果

問題 No.227 簡単ポーカー
ユーザー regeregeregerege
提出日時 2017-05-03 15:56:44
言語 F#
(F# 4.0)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 256 bytes
コンパイル時間 6,677 ms
コンパイル使用メモリ 191,032 KB
実行使用メモリ 31,604 KB
最終ジャッジ日時 2024-09-14 07:07:15
合計ジャッジ時間 8,628 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
31,468 KB
testcase_01 AC 83 ms
31,360 KB
testcase_02 AC 83 ms
31,360 KB
testcase_03 AC 85 ms
31,360 KB
testcase_04 AC 86 ms
31,488 KB
testcase_05 AC 83 ms
31,488 KB
testcase_06 AC 81 ms
30,848 KB
testcase_07 AC 83 ms
31,604 KB
testcase_08 AC 80 ms
31,476 KB
testcase_09 AC 83 ms
31,360 KB
testcase_10 AC 83 ms
31,360 KB
testcase_11 AC 85 ms
31,488 KB
testcase_12 AC 83 ms
31,232 KB
testcase_13 AC 82 ms
31,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (231 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

stdin.ReadLine().Split(' ')
|> Array.toList
|> List.groupBy id
|> List.map(fun (a,b) -> b.Length)
|> List.sort
|> function
| [2;3] -> "FULL HOUSE"
| [1;1;3] -> "THREE CARD"
| [1;2;2] -> "TWO PAIR"
| [1;1;1;2] -> "ONE PAIR"
| _ -> "NO HAND"
|> printfn "%s"
0