結果

問題 No.227 簡単ポーカー
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-08-01 22:42:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 258 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 53,196 KB
最終ジャッジ日時 2024-09-16 13:03:27
合計ジャッジ時間 1,415 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,892 KB
testcase_01 AC 39 ms
53,012 KB
testcase_02 AC 37 ms
52,372 KB
testcase_03 AC 36 ms
52,252 KB
testcase_04 AC 35 ms
53,196 KB
testcase_05 AC 36 ms
52,300 KB
testcase_06 AC 35 ms
52,340 KB
testcase_07 AC 36 ms
52,068 KB
testcase_08 AC 36 ms
52,208 KB
testcase_09 AC 38 ms
52,888 KB
testcase_10 AC 39 ms
52,268 KB
testcase_11 AC 37 ms
51,936 KB
testcase_12 AC 36 ms
52,552 KB
testcase_13 AC 36 ms
52,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = list(map(int,input().split())) 

d = [0]*6

for i in range(1,14):
    l = a.count(i)
    d[l] += 1

if d[3] and d[2]: print("FULL HOUSE")
elif d[3]: print("THREE CARD")
elif d[2] == 2: print("TWO PAIR")
elif d[2]: print("ONE PAIR")
else: print("NO HAND")
0