結果

問題 No.227 簡単ポーカー
ユーザー Shin09shinShin09shin
提出日時 2019-01-15 04:29:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 489 bytes
コンパイル時間 789 ms
コンパイル使用メモリ 81,332 KB
実行使用メモリ 54,996 KB
最終ジャッジ日時 2024-06-23 16:41:46
合計ジャッジ時間 1,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,892 KB
testcase_01 AC 39 ms
54,180 KB
testcase_02 AC 38 ms
54,432 KB
testcase_03 AC 39 ms
54,388 KB
testcase_04 AC 39 ms
54,704 KB
testcase_05 AC 40 ms
54,996 KB
testcase_06 AC 40 ms
53,684 KB
testcase_07 AC 38 ms
54,664 KB
testcase_08 AC 39 ms
53,684 KB
testcase_09 AC 39 ms
53,444 KB
testcase_10 AC 39 ms
54,112 KB
testcase_11 AC 39 ms
54,168 KB
testcase_12 AC 42 ms
54,788 KB
testcase_13 AC 38 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

# 入力
input = list(map(int, input().split()))

# 計算
# 重複を取得
c = collections.Counter(input)
list = list(c.values())
list.sort(reverse=True)
if len(list) == 2:
    if list[0] == 3 and list[1] == 2:
        print("FULL HOUSE")
    else:
        print("NO HAND")
elif len(list) == 3:
    if list[0] == 3:
        print("THREE CARD")
    else:
        print("TWO PAIR")
else:
    if list[0] == 2:
        print("ONE PAIR")
    else:
        print("NO HAND")
0