#D151. Poker Hand
Poker Hand
Poker Hand
Create a program that reads poker hand data and outputs the role for each. However, this issue follows the rules below.
- Poker is a competition with 5 playing cards.
- No more than 5 cards with the same number.
- There is no joker.
- Suppose you only consider the following poker roles: (The higher the number, the higher the role.)
- No role (does not apply to any of the following)
- One pair (two cards with the same number)
- Two pairs (two pairs of cards with the same number)
- Three cards (one set of three cards with the same number)
- Straight (the numbers on 5 cards are consecutive) However, in the case of a straight containing A, the sequence ending with A is also straight. In other words, there are two types of straights containing A: A 2 3 4 5 and 10 J Q K A. Lines that straddle A, such as J Q K A 2, are not straight. (In this case, it will be "no role").
- Full House (one set of three cards with the same number and the other two cards with the same number)
- Four Cards (one set of four cards with the same number)
Input
The input consists of multiple datasets. Each dataset is given in the following format:
Hand 1, Hand 2, Hand 3, Hand 4, Hand 5
In your hand, Trump's J (jack) is 11, Q (queen) is 12, K (king) is 13, A (ace) is 1, and the others are represented by their respective numbers.
The number of datasets does not exceed 50.
Output
For each dataset, output one of the highest roles you can play in your hand. Follow the output example for the notation of the role.
Example
Input
1,2,3,4,1 2,3,2,3,12 12,13,11,12,12 7,6,7,6,7 3,3,2,3,3 6,7,8,9,10 11,12,10,1,13 11,12,13,1,2
Output
one pair two pair three card full house four card straight straight null
inputFormat
outputFormat
outputs the role for each. However, this issue follows the rules below.
- Poker is a competition with 5 playing cards.
- No more than 5 cards with the same number.
- There is no joker.
- Suppose you only consider the following poker roles: (The higher the number, the higher the role.)
- No role (does not apply to any of the following)
- One pair (two cards with the same number)
- Two pairs (two pairs of cards with the same number)
- Three cards (one set of three cards with the same number)
- Straight (the numbers on 5 cards are consecutive) However, in the case of a straight containing A, the sequence ending with A is also straight. In other words, there are two types of straights containing A: A 2 3 4 5 and 10 J Q K A. Lines that straddle A, such as J Q K A 2, are not straight. (In this case, it will be "no role").
- Full House (one set of three cards with the same number and the other two cards with the same number)
- Four Cards (one set of four cards with the same number)
Input
The input consists of multiple datasets. Each dataset is given in the following format:
Hand 1, Hand 2, Hand 3, Hand 4, Hand 5
In your hand, Trump's J (jack) is 11, Q (queen) is 12, K (king) is 13, A (ace) is 1, and the others are represented by their respective numbers.
The number of datasets does not exceed 50.
Output
For each dataset, output one of the highest roles you can play in your hand. Follow the output example for the notation of the role.
Example
Input
1,2,3,4,1 2,3,2,3,12 12,13,11,12,12 7,6,7,6,7 3,3,2,3,3 6,7,8,9,10 11,12,10,1,13 11,12,13,1,2
Output
one pair two pair three card full house four card straight straight null
样例
1,2,3,4,1
2,3,2,3,12
12,13,11,12,12
7,6,7,6,7
3,3,2,3,3
6,7,8,9,10
11,12,10,1,13
11,12,13,1,2
one pair
two pair
three card
full house
four card
straight
straight
null
</p>