結果

問題 No.227 簡単ポーカー
ユーザー YU HiroseYU Hirose
提出日時 2024-05-30 23:08:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 380 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 55,608 KB
最終ジャッジ日時 2024-05-30 23:08:28
合計ジャッジ時間 2,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,664 KB
testcase_01 AC 48 ms
55,608 KB
testcase_02 AC 50 ms
54,144 KB
testcase_03 AC 45 ms
53,596 KB
testcase_04 AC 44 ms
53,956 KB
testcase_05 AC 42 ms
54,284 KB
testcase_06 AC 44 ms
53,228 KB
testcase_07 AC 44 ms
54,324 KB
testcase_08 AC 44 ms
54,548 KB
testcase_09 AC 45 ms
54,904 KB
testcase_10 AC 50 ms
53,568 KB
testcase_11 AC 45 ms
54,052 KB
testcase_12 AC 43 ms
54,596 KB
testcase_13 AC 45 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
a = list(map(int, input().split()))
co = Counter(a)
if len(co) == 2 and max(co.values()) == 3:
    print("FULL HOUSE")
elif len(co) == 3 and max(co.values()) == 3:
    print("THREE CARD")
elif len(co) == 3 and max(co.values()) == 2:
    print("TWO PAIR")
elif len(co) == 4 and max(co.values()) == 2:
    print("ONE PAIR")
else:
    print("NO HAND")
0