結果
問題 | No.227 簡単ポーカー |
ユーザー | Daiki_000 |
提出日時 | 2024-12-19 19:01:13 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 34 ms / 5,000 ms |
コード長 | 810 bytes |
コンパイル時間 | 246 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-12-19 19:01:16 |
合計ジャッジ時間 | 1,677 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
10,752 KB |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 31 ms
10,752 KB |
testcase_04 | AC | 32 ms
10,880 KB |
testcase_05 | AC | 33 ms
10,880 KB |
testcase_06 | AC | 31 ms
10,752 KB |
testcase_07 | AC | 32 ms
10,752 KB |
testcase_08 | AC | 31 ms
10,880 KB |
testcase_09 | AC | 30 ms
10,752 KB |
testcase_10 | AC | 34 ms
10,752 KB |
testcase_11 | AC | 32 ms
10,752 KB |
testcase_12 | AC | 32 ms
10,752 KB |
testcase_13 | AC | 31 ms
10,752 KB |
ソースコード
def determine_role(hand_counts): if len(hand_counts) == 2: if hand_counts[0] == 2 and hand_counts[1] == 3: return "FULL HOUSE" elif hand_counts[0] == 2 and hand_counts[1] == 2: 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()