結果

問題 No.227 簡単ポーカー
ユーザー mochi8kmochi8k
提出日時 2016-08-09 19:52:52
言語 Go
(1.22.1)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 1,167 bytes
コンパイル時間 12,525 ms
コンパイル使用メモリ 225,788 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 23:06:53
合計ジャッジ時間 13,118 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"sort"
	"reflect"
)

func main() {
	// 1:13
	var a, b, c, d, e int
	fmt.Scan(&a, &b, &c, &d, &e)
	cards := []int{a, b, c, d, e}
	cardMap := map[int]int{}

	for _, v := range cards {
		cardMap[v] = (cardMap[v] + 1)
	}

	allocationNumbers := make([]int, 0)
	for _, value := range cardMap {
		allocationNumbers = append(allocationNumbers, value)
	}

	sort.Ints(allocationNumbers)
	if isFullHouse(allocationNumbers) {
		fmt.Println("FULL HOUSE")
	} else if isThreeCard(allocationNumbers) {
		fmt.Println("THREE CARD")
	} else if isTwoPair(allocationNumbers) {
		fmt.Println("TWO PAIR")
	} else if isOnePair(allocationNumbers) {
		fmt.Println("ONE PAIR")
	} else {
		fmt.Print("NO HAND")
	}

}

func isFullHouse(allocationNumbers []int) bool {
	return reflect.DeepEqual(allocationNumbers, []int{2, 3})
}

func isThreeCard(allocationNumbers []int) bool {
	return reflect.DeepEqual(allocationNumbers, []int{1, 1, 3})
}

func isTwoPair(allocationNumbers []int) bool {
	return reflect.DeepEqual(allocationNumbers, []int{1, 2, 2})
}

func isOnePair(allocationNumbers []int) bool {
	return reflect.DeepEqual(allocationNumbers, []int{1, 1, 1, 2})
}
0