結果

問題 No.227 簡単ポーカー
ユーザー YU HiroseYU Hirose
提出日時 2024-05-30 23:06:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 55,220 KB
最終ジャッジ日時 2024-05-30 23:06:41
合計ジャッジ時間 2,549 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 45 ms
55,220 KB
testcase_02 AC 44 ms
54,416 KB
testcase_03 AC 46 ms
54,924 KB
testcase_04 AC 48 ms
54,356 KB
testcase_05 AC 43 ms
54,396 KB
testcase_06 AC 47 ms
55,116 KB
testcase_07 AC 47 ms
53,688 KB
testcase_08 AC 44 ms
54,268 KB
testcase_09 AC 43 ms
54,100 KB
testcase_10 AC 44 ms
53,424 KB
testcase_11 AC 45 ms
54,352 KB
testcase_12 AC 44 ms
54,376 KB
testcase_13 AC 44 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
a = list(map(int, input().split()))
co = Counter(a)
if len(co) == 2:
    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