結果

問題 No.227 簡単ポーカー
ユーザー otsunekootsuneko
提出日時 2021-05-07 11:08:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-09-14 23:51:34
合計ジャッジ時間 2,061 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,248 KB
testcase_01 AC 42 ms
53,248 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 42 ms
53,120 KB
testcase_04 AC 42 ms
53,376 KB
testcase_05 AC 42 ms
53,504 KB
testcase_06 AC 44 ms
53,504 KB
testcase_07 AC 42 ms
52,992 KB
testcase_08 AC 43 ms
53,760 KB
testcase_09 AC 44 ms
53,376 KB
testcase_10 AC 42 ms
53,376 KB
testcase_11 AC 43 ms
53,504 KB
testcase_12 AC 42 ms
54,016 KB
testcase_13 AC 42 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
A = list(map(int,input().split()))
d = Counter(A)

three = 0
two = 0
for k in d:
    if d[k] == 3:
        three += 1
    elif d[k] == 2:
        two += 1
if three:
    if two:
        print("FULL HOUSE")
    else:
        print("THREE CARD")
else:
    if two == 2:
        print("TWO PAIR")
    elif two == 1:
        print("ONE PAIR")
    else:
        print("NO HAND")
0