結果

問題 No.227 簡単ポーカー
ユーザー No-RaNo-Ra
提出日時 2017-08-11 20:00:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 898 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-20 22:23:27
合計ジャッジ時間 1,212 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

hand = input().split()
hand_ch = [[-1 for i in range(2)] for j in range(5)]

for i in range(5):
    chhand = hand[i]
    count = 0
    for j in range(5):
        if chhand == hand[j]:
            count += 1
    hand_ch[i][0] = hand[i]
    hand_ch[i][1] = count

hand_uq = []
for i in range(5):
    if hand_ch[i] not in hand_uq:
        hand_uq.append(hand_ch[i])
hand_count = []
for i in range(len(hand_uq)):
    hand_count.append(hand_uq[i][1])
hand_count.sort(reverse=True)


print(hand_count)

if hand_count[0] == 3 and hand_count[1] == 2:
    print("FULL HOUSE")
elif hand_count[0] == 3 and hand_count[1] == 1 and hand_count[2] == 1:
    print("THREE CARD")
elif hand_count[0] == 2 and hand_count[1] == 2 and hand_count[2] == 1:
    print("TWO PAIR")
elif hand_count[0] == 2 and hand_count[1] == 1 and hand_count[2] == 1 and hand_count[3] == 1:
    print("ONE PAIR")
else:
    print("NO HAND")
0