結果

問題 No.227 簡単ポーカー
ユーザー kohei2019kohei2019
提出日時 2022-01-05 19:03:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 397 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 55,536 KB
最終ジャッジ日時 2024-11-06 05:47:42
合計ジャッジ時間 1,582 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,036 KB
testcase_01 AC 42 ms
54,308 KB
testcase_02 AC 44 ms
54,392 KB
testcase_03 AC 42 ms
54,076 KB
testcase_04 AC 42 ms
55,536 KB
testcase_05 AC 43 ms
54,980 KB
testcase_06 AC 43 ms
54,676 KB
testcase_07 AC 42 ms
53,568 KB
testcase_08 AC 43 ms
54,440 KB
testcase_09 AC 42 ms
53,664 KB
testcase_10 AC 43 ms
54,412 KB
testcase_11 AC 42 ms
53,740 KB
testcase_12 AC 43 ms
54,336 KB
testcase_13 AC 42 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
ls = list(map(int,input().split()))
cnt = list(collections.Counter(ls).values())
cnt.sort()
if2 = 0
if3 = 0
for i in cnt:
    if i == 2:
        if2 += 1
    elif i == 3:
        if3 += 1

if if3 == 1 and if2 == 1:
    print('FULL HOUSE')
elif if2 == 2:
    print('TWO PAIR')
elif if3 == 1:
    print('THREE CARD')
elif if2 == 1:
    print('ONE PAIR')
else:
    print('NO HAND')
0