4984: 与指定数字相同的数的个数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:18
Solved:14
Description
输入n个整数,统计与整数m相同的数的个数。
Input
共3行
第1行为n(0<n<100)
第2行为n个整数,空格隔开
第3行为m(0<m<100)
第1行为n(0<n<100)
第2行为n个整数,空格隔开
第3行为m(0<m<100)
Output
与m相同的数的个数
Sample Input Copy
5
3 4 1 2 4
4
Sample Output Copy
2