結果
問題 | No.227 簡単ポーカー |
ユーザー | kuuso1 |
提出日時 | 2016-08-18 17:29:08 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 87 ms / 5,000 ms |
コード長 | 634 bytes |
コンパイル時間 | 12,878 ms |
コンパイル使用メモリ | 188,772 KB |
実行使用メモリ | 31,872 KB |
最終ジャッジ日時 | 2024-11-07 19:27:05 |
合計ジャッジ時間 | 14,602 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
31,488 KB |
testcase_01 | AC | 81 ms
31,616 KB |
testcase_02 | AC | 81 ms
31,720 KB |
testcase_03 | AC | 83 ms
31,488 KB |
testcase_04 | AC | 82 ms
31,616 KB |
testcase_05 | AC | 87 ms
31,616 KB |
testcase_06 | AC | 80 ms
31,872 KB |
testcase_07 | AC | 81 ms
31,720 KB |
testcase_08 | AC | 78 ms
31,488 KB |
testcase_09 | AC | 81 ms
31,872 KB |
testcase_10 | AC | 80 ms
31,360 KB |
testcase_11 | AC | 82 ms
31,872 KB |
testcase_12 | AC | 82 ms
31,616 KB |
testcase_13 | AC | 81 ms
31,840 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (247 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/
ソースコード
open System type Sol() = member this.Solve() = let As = stdin.ReadLine().Split() |> Array.map int let hs = As |> Seq.countBy (fun e -> e) |> Seq.sortWith (fun p q -> (snd p).CompareTo(snd q)) |> Seq.rev |> Seq.toArray let judgeHands (ha: (int*int) array) = match (Array.length ha) with | 4 -> "ONE PAIR" | 2 -> if (snd ha.[0]) = 3 then "FULL HOUSE" else "NO HAND" | 3 -> if (snd ha.[0]) = 3 then "THREE CARD" else "TWO PAIR" | _ -> "NO HAND" judgeHands hs |> printfn "%s" let mySol = new Sol() mySol.Solve()