結果

問題 No.227 簡単ポーカー
ユーザー ABKZABKZ
提出日時 2021-06-16 22:04:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 298 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 55,172 KB
最終ジャッジ日時 2024-06-10 02:50:02
合計ジャッジ時間 1,340 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,484 KB
testcase_01 AC 38 ms
55,172 KB
testcase_02 AC 38 ms
54,376 KB
testcase_03 AC 35 ms
54,984 KB
testcase_04 AC 35 ms
54,672 KB
testcase_05 AC 37 ms
54,484 KB
testcase_06 AC 37 ms
54,328 KB
testcase_07 AC 38 ms
54,528 KB
testcase_08 AC 37 ms
54,924 KB
testcase_09 AC 38 ms
54,424 KB
testcase_10 AC 36 ms
54,140 KB
testcase_11 AC 41 ms
53,976 KB
testcase_12 AC 38 ms
54,676 KB
testcase_13 AC 36 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

A = list(map(int, input().split()))

_, c = zip(*collections.Counter(A).most_common())

if c == (3, 2):
  print("FULL HOUSE")
elif c == (3, 1, 1):
  print("THREE CARD")
elif c == (2, 2, 1):
  print("TWO PAIR")
elif c == (2, 1, 1, 1):
  print("ONE PAIR")
else:
  print("NO HAND")
0