結果

問題 No.227 簡単ポーカー
ユーザー okashin39okashin39
提出日時 2020-12-04 16:58:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 378 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,584 KB
最終ジャッジ日時 2024-09-15 03:32:23
合計ジャッジ時間 10,573 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 513 ms
44,312 KB
testcase_01 WA -
testcase_02 AC 515 ms
44,312 KB
testcase_03 WA -
testcase_04 AC 518 ms
44,060 KB
testcase_05 AC 519 ms
44,192 KB
testcase_06 AC 525 ms
44,320 KB
testcase_07 WA -
testcase_08 AC 521 ms
44,316 KB
testcase_09 AC 521 ms
44,316 KB
testcase_10 AC 523 ms
44,052 KB
testcase_11 AC 519 ms
44,576 KB
testcase_12 WA -
testcase_13 AC 522 ms
44,192 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 == 2:
        print("FULL HOUSE")
    else:
        print("THREE CARD")
elif numpy.max(counts) == 2:
    if counts.shape == 3:
        print("TWO PAIR")
    else:
        print("ONE PAIR")   
else:
    print("NO HAND")
0