1899: 二元组个数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:1
Description
给定两个数组a,b,若a[i] == b[j] 则称 [i, j] 为一个二元组,求在给定的两个数组中,二元组的个数。
Input
第二行输入m个数,表示第一个数组
第三行输入 n
Output
二元组个数。
Sample Input Copy
4
1 2 3 4
1
1
Sample Output Copy
1