結果
| 問題 |
No.227 簡単ポーカー
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-01 12:14:44 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 5,000 ms |
| コード長 | 336 bytes |
| コンパイル時間 | 215 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-11-21 13:02:30 |
| 合計ジャッジ時間 | 1,212 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 |
ソースコード
from collections import Counter
A = [int(i) for i in input().split()]
ac = Counter(A).most_common()
if ac[0][1] == 3:
if ac[1][1] == 2:
print("FULL HOUSE")
else:
print("THREE CARD")
elif ac[0][1] == 2:
if ac[1][1] == 2:
print("TWO PAIR")
else:
print("ONE PAIR")
else:
print("NO HAND")