結果

問題 No.227 簡単ポーカー
ユーザー Daiki_000Daiki_000
提出日時 2024-12-19 19:58:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 749 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-19 19:58:54
合計ジャッジ時間 1,734 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def determine_role(hand_counts):
    if len(hand_counts) == 2:
        if hand_counts[0] == 2 and hand_counts[1] == 3:
            return "FULL HOUSE"
        return "TWO PAIR"
    elif len(hand_counts) == 1:
        if hand_counts[0] == 3:
            return "THREE CARD"
        elif hand_counts[0] == 2:
            return "ONE PAIR"
        else:
            return "NO HAND"
    else:
        return "NO HAND"


def main():
    cards = sorted(list(map(int, input().split())))
    hand = list(set(cards))
    hand_counts = [cards.count(role) for role in hand]
    hand_counts = sorted([pair_card for pair_card in hand_counts if pair_card != 1])

    result = determine_role(hand_counts)
    print(result)


if __name__ == "__main__":
    main()
0