結果

問題 No.227 簡単ポーカー
ユーザー keidenkeiden
提出日時 2024-09-20 16:47:03
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 16,896 KB
最終ジャッジ日時 2024-09-20 16:47:06
合計ジャッジ時間 2,455 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
16,768 KB
testcase_01 AC 22 ms
16,768 KB
testcase_02 AC 21 ms
16,768 KB
testcase_03 AC 21 ms
16,640 KB
testcase_04 AC 22 ms
16,768 KB
testcase_05 AC 29 ms
16,640 KB
testcase_06 AC 22 ms
16,768 KB
testcase_07 WA -
testcase_08 AC 22 ms
16,640 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

(use gauche.collection)

(define (f xs)
  (cond
    ((equal? xs '(3 2))     "FULL HOUSE")
    ((equal? xs '(3 1 1))   "THREE CARD")
    ((equal? xs '(2 2 1))   "TWO PAIR")
    ((equal? xs '(2 1 1 1)) "ONE PAIR")
    (else                   "NO HAND")))

(define yuki227
  (print (f (map length (group-collection (sort (list (read) (read) (read) (read) (read))))))))
0