結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 33 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 WA -
testcase_08 AC 29 ms
10,496 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 28 ms
10,496 KB
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_uq.sort()

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