তাপদাহ ( Heat Streak )

CPU: 1s
Memory: 1024MB


যদি পরপর কিছু দিনের সর্বোচ্চ তাপমাত্রা এমন হয় যেন প্রতিটি দিনের সর্বোচ্চ তাপমাত্রা তার আগের দিনের সর্বোচ্চ তাপমাত্রার সমান বা বেশি হয় এবং এই ধারাটিকে আর বড় করা সম্ভব না হয়, তাহলে প্রফেসর K এটিকে তাপদাহ হিসেবে অভিহিত করেন। কোন তাপদাহ যত দিন ব্যাপি চলে, তাকে তাপদাহটির দৈর্ঘ্য বলা হয়। তোমাকে পরপর কিছু দিনের সর্বোচ্চ তাপমাত্রার ডাটা সরবরাহ করা হবে। তা থেকে তোমাকে সর্বোচ্চ দৈর্ঘ্যের তাপদাহটি বের করতে হবে। একটি তাপদাহ সর্বোচ্চ দৈর্ঘ্যের হবে, যদি এটির দৈর্ঘ্য প্রদত্ত ডাটায় প্রাপ্ত সবগুলি তাপদাহের মধ্যে সর্বোচ্চ হয়।

উদাহরণস্বরূপ, তাপমাত্রার এই ডাটাটি বিবেচনা করিঃ 20 18 20 21 23 22 11. এখানে প্রথমে একটি একদিনের তাপদাহ {20} পাওয়া যায়, তারপরে একটি চার দৈর্ঘ্যের তাপদাহ {18 20 21 23} পাওয়া যায়, তারপরে একটি একদিনের তাপদাহ {22} এবং সর্বশেষে আরেকটি একদিনের তাপদাহ {11} পাওয়া যায়। লক্ষ্য কর যে {18 20} এটি কোন তাপদাহ নয়। কারণ যদিও এটি ক্রমবর্ধমান, কিন্তু এটিকে আরও বড় করা সম্ভব। এটির সাথে 21 এবং 23 যোগ করলে এটিকে আর বড় করা সম্ভব হবে না, ফলে {18 20 21 23} একটি তাপদাহ।


Professor K has defined Heat Streak as a sequence of maximal successive days where the daily maximum temperature either increased or remained the same from one day to the next. The total number of days in such a sequence is called the length of the Heat Streak. You are given the maximum temperature data of several days. You need to find the length of the Maximum Heat Streak. A Heat Streak is called Maximum Heat Streak if its length is maximum among all the Heat Streaks observed in the given data.

For example, consider the temperature data: 20 18 20 21 23 22 11. Here we find a 1 day heat streak {20}, followed by a 4 day heat streak {18 20 21 23}, followed by a 1 day heat streak {22}, and then another 1 day heat streak {11}. Note that the sequence {18 20} is not a heat streak. This is because the sequence is increasing, but it is not maximal. We can further add 21 and 23 to the sequence to make it maximal.


ইনপুটের বর্ণনা

ইনপুটের প্রথম লাইনে টেস্টকেসের সংখ্যা T দেওয়া থাকবে। প্রতিটি টেস্টকেস একটি লাইনে বর্ণনা করা হবে। প্রতিটি লাইনের শুরুতে একটি পূর্ণসংখ্যা n দেওয়া থাকবে, যা নির্দেশ করে কতদিনের তাপমাত্রার ডাটা সরবরাহ করা হবে। এর পরে n টি পূর্ণসংখ্যা থাকবে, যা পরপর n দিনের সর্বোচ্চ তাপমাত্রা প্রকাশ করে। তাপমাত্রাগুলি 1 হতে 60 এর মধ্যে হবে। পূর্ণসংখ্যাগুলি একটি স্পেস দিয়ে আলাদা করা থাকবে।


Input

First line of the input contains T, the number of test cases. Each test case is specified in a single line. The line contains an integer n that represents the number of days for which temperature data is available. Then n integers follow, representing maximum temperature of each successive day. Each temperature will be in the range of 1 to 60. The numbers are separated from each other by a single space.


অাউটপুটের বর্ণনা

প্রতিটি টেস্টকেসের জন্য একটি লাইনে সর্বোচ্চ তাপদাহের দৈর্ঘ্য আউটপুট দিতে হবে।


Output

For each test case output in a single line the length of the Maximum Heat Streak.


Limit

1 <= T <= 20

1 <= n <= 104


Sample

InputOutput
2 5 30 29 28 27 26 7 20 18 20 21 23 22 111 4