結果
問題 |
No.227 簡単ポーカー
|
ユーザー |
![]() |
提出日時 | 2021-05-30 21:30:06 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 29 ms / 5,000 ms |
コード長 | 413 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-08 21:02:15 |
合計ジャッジ時間 | 1,291 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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()