結果

問題 No.227 簡単ポーカー
コンテスト
ユーザー Sttashe Egnm
提出日時 2024-02-26 14:38:04
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 93 ms / 5,000 ms
+ 141µs
コード長 326 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 290 ms
コンパイル使用メモリ 21,596 KB
実行使用メモリ 15,788 KB
最終ジャッジ日時 2026-09-06 00:58:08
合計ジャッジ時間 3,211 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import collections
cards=collections.Counter(list(map(int,input().split())))
f0=cards.most_common()[0][1]
try:
  f1=cards.most_common()[1][1]
except:
  pass
if f0==3 and f1==2:
	print("FULL HOUSE")
elif f0==3:
	print("THREE CARD")
elif f0==2 and f1==2:
	print("TWO PAIR")
elif f0==2:
	print("ONE PAIR")
else:
	print("NO HAND")
0