結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 32 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

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)


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