結果

問題 No.227 簡単ポーカー
ユーザー 10isiatama10isiatama
提出日時 2024-12-14 05:30:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 536 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 54,620 KB
最終ジャッジ日時 2024-12-14 05:30:11
合計ジャッジ時間 2,056 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,508 KB
testcase_01 AC 45 ms
54,116 KB
testcase_02 AC 45 ms
54,620 KB
testcase_03 AC 45 ms
54,528 KB
testcase_04 AC 45 ms
54,200 KB
testcase_05 AC 48 ms
53,864 KB
testcase_06 AC 45 ms
54,520 KB
testcase_07 AC 45 ms
54,580 KB
testcase_08 AC 44 ms
53,572 KB
testcase_09 AC 43 ms
54,440 KB
testcase_10 AC 44 ms
54,156 KB
testcase_11 AC 45 ms
54,580 KB
testcase_12 AC 44 ms
54,616 KB
testcase_13 AC 45 ms
54,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

a = list(map(int,input().split()))
ans = 0
c = Counter(a)

for i in range(1,14):
    for j in range(1,14):
        if i == j:continue
        if (c[i] == 3 and c[j] == 2) or (c[i] == 2 and c[j] == 3):
            ans = 4
        if c[i] == 3 or c[j] == 3:
            ans = max(ans, 3)
        if c[i] == 2 and c[j] == 2:
            ans = max(ans , 2)
        if c[i] == 2 or c[j] == 2:
            ans = max(ans , 1)

op = ['NO HAND', 'ONE PAIR', 'TWO PAIR', 'THREE CARD', 'FULL HOUSE']
print(op[ans])
0