結果
問題 | No.227 簡単ポーカー |
ユーザー | 阿部祥紀 |
提出日時 | 2024-04-08 19:00:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 397 bytes |
コンパイル時間 | 105 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-01 10:30:45 |
合計ジャッジ時間 | 1,015 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
10,752 KB |
testcase_01 | AC | 27 ms
10,624 KB |
testcase_02 | AC | 25 ms
10,624 KB |
testcase_03 | AC | 26 ms
10,624 KB |
testcase_04 | WA | - |
testcase_05 | AC | 23 ms
10,624 KB |
testcase_06 | AC | 25 ms
10,624 KB |
testcase_07 | AC | 25 ms
10,624 KB |
testcase_08 | AC | 24 ms
10,624 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 24 ms
10,624 KB |
testcase_13 | AC | 24 ms
10,752 KB |
ソースコード
import collections def main(): count=collections.Counter(map(int,input().split())) num=list(count.values()) if 3 in num and 2 in num: print("FULL HOUSE") elif 3 in num: print("THREE CARD") elif 2 in num and 2 in num: print("TWO PAIR") elif 2 in num: print("ONE PAIR") else: print("NO HAND") if __name__ == "__main__": main()