CF963C.Cutting Rectangle
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A rectangle with sides A and B is cut into rectangles with cuts parallel to its sides. For example, if p horizontal and q vertical cuts were made, (p+1)⋅(q+1) rectangles were left after the cutting. After the cutting, rectangles were of n different types. Two rectangles are different if at least one side of one rectangle isn't equal to the corresponding side of the other. Note that the rectangle can't be rotated, this means that rectangles a×b and b×a are considered different if a=b .
For each type of rectangles, lengths of the sides of rectangles are given along with the amount of the rectangles of this type that were left after cutting the initial rectangle.
Calculate the amount of pairs (A;B) such as the given rectangles could be created by cutting the rectangle with sides of lengths A and B . Note that pairs (A;B) and (B;A) are considered different when A=B .
输入格式
The first line consists of a single integer n ( 1≤n≤2⋅105 ) — amount of different types of rectangles left after cutting the initial rectangle.
The next n lines each consist of three integers wi,hi,ci (1≤wi,hi,ci≤1012) — the lengths of the sides of the rectangles of this type and the amount of the rectangles of this type.
It is guaranteed that the rectangles of the different types are different.
输出格式
Output one integer — the answer to the problem.
输入输出样例
输入#1
1 1 1 9
输出#1
3
输入#2
2 2 3 20 2 4 40
输出#2
6
输入#3
2 1 2 5 2 3 5
输出#3
0
说明/提示
In the first sample there are three suitable pairs: (1;9) , (3;3) and (9;1) .
In the second sample case there are 6 suitable pairs: (2;220) , (4;110) , (8;55) , (10;44) , (20;22) and (40;11) .
Here the sample of cut for (20;22) .
The third sample has no suitable pairs.