CF1248A.Integer Points
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
DLS and JLS are bored with a Math lesson. In order to entertain themselves, DLS took a sheet of paper and drew n distinct lines, given by equations y=x+pi for some distinct p1,p2,…,pn .
Then JLS drew on the same paper sheet m distinct lines given by equations y=−x+qi for some distinct q1,q2,…,qm .
DLS and JLS are interested in counting how many line pairs have integer intersection points, i.e. points with both coordinates that are integers. Unfortunately, the lesson will end up soon, so DLS and JLS are asking for your help.
输入格式
The first line contains one integer t ( 1≤t≤1000 ), the number of test cases in the input. Then follow the test case descriptions.
The first line of a test case contains an integer n ( 1≤n≤105 ), the number of lines drawn by DLS.
The second line of a test case contains n distinct integers pi ( 0≤pi≤109 ) describing the lines drawn by DLS. The integer pi describes a line given by the equation y=x+pi .
The third line of a test case contains an integer m ( 1≤m≤105 ), the number of lines drawn by JLS.
The fourth line of a test case contains m distinct integers qi ( 0≤qi≤109 ) describing the lines drawn by JLS. The integer qi describes a line given by the equation y=−x+qi .
The sum of the values of n over all test cases in the input does not exceed 105 . Similarly, the sum of the values of m over all test cases in the input does not exceed 105 .
In hacks it is allowed to use only one test case in the input, so t=1 should be satisfied.
输出格式
For each test case in the input print a single integer — the number of line pairs with integer intersection points.
输入输出样例
输入#1
3 3 1 3 2 2 0 3 1 1 1 1 1 2 1 1
输出#1
3 1 0
说明/提示
The picture shows the lines from the first test case of the example. Black circles denote intersection points with integer coordinates.