3316.Nineteen

Time Limit: 1s Memory Limit: 256MB

Alice likes word "nineteen" very much. She has a string s and wants the string to contain as many such words as possible. For that reason she can rearrange the letters of the string.

For example, if she has string "xiineteenppnnnewtnee", she can get string "xnineteenppnineteenw", containing (the occurrences marked) two such words. More formally, word "nineteen" occurs in the string the number of times you can read it starting from some letter of the string. Of course, you shouldn't skip letters.

Help her to find the maximum number of "nineteen"s that she can get in her string.

Input Format(From the terminal/stdin)

The first line contains a non-empty string s, consisting only of lowercase English letters. The length of string s doesn't exceed 100.

Output Format(To the terminal/stdout)

Print a single integer - the maximum number of "nineteen"s that she can get in her string.

Sample Input 1

Copy
nniinneetteeeenn
                \n

Sample Output 1

Copy
2
 \n

Sample Input 2

Copy
nneteenabcnneteenabcnneteenabcnneteenabcnneteenabcii
                                                    \n

Sample Output 2

Copy
2
 \n

Sample Input 3

Copy
nineteenineteen
               \n

Sample Output 3

Copy
2
 \n

Submit

请先 登录

© 2025 FAQs