結果
| 問題 | No.227 簡単ポーカー |
| コンテスト | |
| ユーザー |
wesoweeen
|
| 提出日時 | 2021-05-30 21:30:06 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 101 ms / 5,000 ms |
| コード長 | 413 bytes |
| 記録 | |
| コンパイル時間 | 806 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-05-08 23:40:06 |
| 合計ジャッジ時間 | 3,246 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 |
ソースコード
import collections as cl
def main():
hand = list(cl.Counter(list(map(int,input().split()))).values())
#print(hand)
if 3 in hand and 2 in hand:
print('FULL HOUSE')
elif 3 in hand:
print('THREE CARD')
elif hand.count(2) == 2:
print('TWO PAIR')
elif 2 in hand:
print('ONE PAIR')
else:
print('NO HAND')
if __name__ == '__main__':
main()
wesoweeen