eolymp
bolt
Try our new interface for solving problems
Problems

Popular Vote

Popular Vote

Time limit 1 second
Memory limit 128 MiB

In an election with more than two candidates, it is often the case that the winner (the candidate receiving the most votes) receives less than the majority of the votes. Given the results of an election, can you determine the winner, and whether the winner received more than half of the votes?

Input data

The first line indicates the number of test cases t~(t \le 500). The first line of each test case also contains a single positive integer n indicating the number of candidates in the election. This is followed by n lines, with the i-th line containing a single nonnegative integer indicating the number of votes candidate i received.

There are at least 2 and no more than 10 candidates in each case, and each candidate will not receive more than 50000 votes. There will be at least one vote cast in each election.

Output data

For each test case print one line. If the winner receives more than half of the votes, print the phrase "majority winner" followed by the candidate number of the winner. If the winner does not receive more than half of the votes, print the phrase "minority winner" followed by the candidate number of the winner. If a winner cannot be determined because no single candidate has more vote than others, print the phrase "no winner". The candidate numbers in each case are 1, 2, ..., n.

Examples

Input example #1
4
3
10
21
10
3
20
10
10
3
10
10
10
4
15
15
15
45
Output example #1
majority winner 2
minority winner 1
no winner
minority winner 4
Source 2015 ACM North America - Rocky Mountain, Problem A