You are given a list of $$$n$$$ pairwise distinct points $$$p_1, p_2, \dots, p_n$$$ on a 2D plane. An interval $$$[l, r]$$$ of points is called convex if the following conditions hold:
Recall that a strictly convex polygon is a convex polygon that has no three consecutive points on the same line.
Find the maximum length of a convex interval in the given list. If there are no convex intervals, print $$$0$$$.
The first line contains a single integer $$$t$$$ ($$$1 \le t \le 10^4$$$) — the number of test cases.
The first line of each test case contains a single integer $$$n$$$ ($$$3 \le n \le 2 \cdot 10^5$$$) — the number of points.
The $$$i$$$-th of the next $$$n$$$ lines contains two integers $$$x_i$$$ and $$$y_i$$$ ($$$-10^9 \le x_i, y_i \le 10^9$$$) — the coordinates of the point $$$p_i$$$.
Additional constraints on the input:
For each test case, print a single integer — the maximum length of a convex interval in the given list of points.
350 00 21 12 22 07-4 5-7 5-4 8-1 96 37 -54 46-1 00 01 11 -10 11 0
353
| Name |
|---|


