結果
| 問題 | No.227 簡単ポーカー |
| コンテスト | |
| ユーザー |
_KingdomOfMoray
|
| 提出日時 | 2019-11-28 06:55:33 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 33 ms / 5,000 ms |
| コード長 | 452 bytes |
| コンパイル時間 | 96 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-11-17 06:03:32 |
| 合計ジャッジ時間 | 1,199 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 |
ソースコード
import collections
a = list(map(int,input().split()))
c = collections.Counter(a)
list_per_element = c.most_common()
length = len(list_per_element)
res = 'apple'
if length == 2 and list_per_element[0][1] == 3:
res = 'FULL HOUSE'
elif length == 3:
if list_per_element[0][1] == list_per_element[1][1]:
res = 'TWO PAIR'
else:
res = 'THREE CARD'
elif length == 4:
res = 'ONE PAIR'
else:
res = 'NO HAND'
print(res)
_KingdomOfMoray