結果

問題 No.227 簡単ポーカー
ユーザー あかりきあかりき
提出日時 2021-05-24 06:13:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 286 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-10-12 12:07:09
合計ジャッジ時間 1,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 43 ms
54,016 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 44 ms
53,376 KB
testcase_04 AC 47 ms
53,760 KB
testcase_05 AC 43 ms
53,376 KB
testcase_06 AC 42 ms
53,376 KB
testcase_07 AC 42 ms
53,376 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 42 ms
53,632 KB
testcase_10 AC 42 ms
53,376 KB
testcase_11 AC 45 ms
53,888 KB
testcase_12 AC 47 ms
53,504 KB
testcase_13 AC 47 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
a=list(map(int,input().split()))
A=collections.Counter(a)
L=list(A.values())
L.sort()
L.reverse()
if L==[3,2]:
  print('FULL HOUSE')
elif L==[3,1,1]:
  print('THREE CARD')
elif L==[2,2,1]:
  print('TWO PAIR')
elif L[0]==2:
  print('ONE PAIR')
else:
  print('NO HAND')
0