Exam Manipulation

아직 제출이 없습니다시간 제한1초메모리 제한512 MB

문제

A group of students is taking a True/False exam. Each question is worth one point. You, as their teacher, want to make your students look as good as possible—so you cheat! (I know, you would never actually do that.) To cheat, you manipulate the answer key so that the lowest score in the class is as high as possible.

What is the best possible lowest score you can achieve?

입력

The first line of input contains two integers nn (1n1,0001 \le n \le 1,000) and kk (1k101 \le k \le 10), where nn is the number of students, and kk is the number of True/False questions on the exam.

Each of the next nn lines contains a string of length kk, consisting only of upper-case ‘T’ and uppercase ‘F’. This string represents the answers that a student submitted, in the order the questions were given.

출력

Output, on a single line, the best possible lowest score in the class.