結果

問題 No.227 簡単ポーカー
ユーザー okashin39okashin39
提出日時 2020-12-04 17:00:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 532 ms / 5,000 ms
コード長 384 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,576 KB
最終ジャッジ日時 2024-09-15 03:35:30
合計ジャッジ時間 10,844 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
44,456 KB
testcase_01 AC 519 ms
44,324 KB
testcase_02 AC 517 ms
44,072 KB
testcase_03 AC 532 ms
44,448 KB
testcase_04 AC 520 ms
44,324 KB
testcase_05 AC 529 ms
44,168 KB
testcase_06 AC 514 ms
44,068 KB
testcase_07 AC 530 ms
44,076 KB
testcase_08 AC 517 ms
44,328 KB
testcase_09 AC 520 ms
44,440 KB
testcase_10 AC 529 ms
44,448 KB
testcase_11 AC 520 ms
44,460 KB
testcase_12 AC 518 ms
44,576 KB
testcase_13 AC 530 ms
44,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy

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

u, counts = numpy.unique(a, return_counts=True)

if numpy.max(counts) == 3:
    if counts.shape[0] == 2:
        print("FULL HOUSE")
    else:
        print("THREE CARD")
elif numpy.max(counts) == 2:
    if counts.shape[0] == 3:
        print("TWO PAIR")
    else:
        print("ONE PAIR")   
else:
    print("NO HAND")
0