시간 제한메모리 제한제출정답맞힌 사람정답 비율
6 초 512 MB45191944.186%

문제

A group of friends has just played a round of miniature golf. Miniature golf courses consist of a number of holes. Each player takes a turn to play each hole by hitting a ball repeatedly until it drops into the hole. A player’s score on that hole is the number of times they hit the ball. To prevent incompetent players slowing down the game too much, there is also an upper limit ℓ (a positive integer) on the score: if a player has hit the ball ℓ times without the ball dropping into the hole, the score for that hole is recorded as ℓ and that player’s turn is over. The total score of each player is simply the sum of their scores on all the holes. Naturally, a lower score is considered better.

There is only one problem: none of the players can remember the value of the integer ℓ. They decide that they will not apply any upper limit while playing, allowing each player to keep playing until the ball drops into the hole. After the game they intend to look up the value of ℓ and adjust the scores, replacing any score on a hole that is larger than ℓ with ℓ.

The game has just finished, but the players have not yet looked up ℓ. They wonder what their best possible ranks are. For this problem, the rank of a player is the number of players who achieved an equal or lower total score after the scores are adjusted with ℓ. For example, if the adjusted scores of the players are 3, 5, 5, 4, and 3, then their ranks are 2, 5, 5, 3 and 2 respectively.

Given the scores of the players on each hole, determine the smallest possible rank for each player.

입력

The first line of input contains two integers p and h, where p (2 ≤ p ≤ 500) is the number of players and h (1 ≤ h ≤ 50) is the number of holes. The next p lines each contain h positive integers. The jth number on the ith of these lines is the score for player i on hole j, and does not exceed 109.

출력

Output a line with the minimum possible rank for each player, in the same order as players are listed in the input.

예제 입력 1

3 3
2 2 2
4 2 1
4 4 1

예제 출력 1

1
2
2

예제 입력 2

6 4
3 1 2 2
4 3 2 2
6 6 3 2
7 3 4 3
3 4 2 4
2 3 3 5

예제 출력 2

1
2
5
5
4
3