結果

問題 No.227 簡単ポーカー
ユーザー convexineqconvexineq
提出日時 2020-12-29 06:51:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 1,448 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 54,588 KB
最終ジャッジ日時 2024-10-04 19:09:28
合計ジャッジ時間 1,410 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,588 KB
testcase_01 AC 35 ms
53,688 KB
testcase_02 AC 35 ms
54,244 KB
testcase_03 AC 34 ms
54,408 KB
testcase_04 AC 34 ms
54,452 KB
testcase_05 AC 34 ms
54,360 KB
testcase_06 AC 34 ms
53,956 KB
testcase_07 AC 34 ms
54,188 KB
testcase_08 AC 34 ms
54,116 KB
testcase_09 AC 34 ms
53,728 KB
testcase_10 AC 35 ms
54,184 KB
testcase_11 AC 35 ms
54,012 KB
testcase_12 AC 34 ms
53,832 KB
testcase_13 AC 35 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
*a, = Counter(map(int,input().split())).values()

if 2 in a and 3 in a:
    ans = "FULL HOUSE"
elif 3 in a:
    ans = "THREE CARD"
elif a.count(2) == 2:
    ans = "TWO PAIR"
elif a.count(2) == 1:    
    ans = "ONE PAIR"
else:
    ans = "NO HAND"

print(ans)
0