結果
問題 | No.227 簡単ポーカー |
ユーザー | maimai8 |
提出日時 | 2020-08-02 19:15:06 |
言語 | OCaml (5.1.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 478 bytes |
コンパイル時間 | 453 ms |
コンパイル使用メモリ | 21,448 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 01:53:54 |
合計ジャッジ時間 | 1,269 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
コンパイルメッセージ
File "Main.ml", lines 3-9, characters 2-18: 3 | ..let [a;b;c;d;e] = List.fast_sort compare lst in 4 | Printf.printf "%s\n" 5 | (if (a = b && b = c && d = e) || (a = b && c = d && d = e) then "FULL HOUSE" 6 | else if (a = b && b = c) || (b = c && c = d) || (c = d && d = e) then "THREE CARD" 7 | else if (a = b && (c = d || d = e)) || (b = c && d = e) then "TWO PAIR" 8 | else if a = b || b = c || c = d || d = e then "ONE PAIR" 9 | else "NO HAND") Warning 8 [partial-match]: this pattern-matching is not exhaustive. Here is an example of a case that is not matched: a::b::c::d::e::_::_
ソースコード
let () = let lst = Scanf.scanf "%d %d %d %d %d\n" @@ fun a b c d e -> [a;b;c;d;e] in let [a;b;c;d;e] = List.fast_sort compare lst in Printf.printf "%s\n" (if (a = b && b = c && d = e) || (a = b && c = d && d = e) then "FULL HOUSE" else if (a = b && b = c) || (b = c && c = d) || (c = d && d = e) then "THREE CARD" else if (a = b && (c = d || d = e)) || (b = c && d = e) then "TWO PAIR" else if a = b || b = c || c = d || d = e then "ONE PAIR" else "NO HAND")