結果

問題 No.227 簡単ポーカー
ユーザー Shin09shinShin09shin
提出日時 2019-01-15 04:22:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 430 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 55,784 KB
最終ジャッジ日時 2024-06-23 16:33:15
合計ジャッジ時間 1,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 41 ms
54,764 KB
testcase_02 AC 40 ms
53,664 KB
testcase_03 AC 40 ms
53,504 KB
testcase_04 AC 42 ms
54,936 KB
testcase_05 AC 41 ms
54,924 KB
testcase_06 AC 40 ms
53,488 KB
testcase_07 WA -
testcase_08 AC 40 ms
53,864 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 39 ms
54,800 KB
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

# 入力
input = list(map(int, input().split()))

# 計算
# 重複を取得
c = collections.Counter(input)
list = list(c.values())
if len(list) == 2:
    if list[0] == 3 and list[1] == 2:
        print("FULL HOUSE")
elif len(list) == 3:
    if list[0] == 3:
        print("THREE CARD")
    else:
        print("TWO PAIR")
else:
    if list[0] == 2:
        print("ONE PAIR")
    else:
        print("NO HAND")
0