CF1009A.Game Shopping
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The first line of the input contains two integers n and m ( 1≤n,m≤1000 ) — the number of games and the number of bills in Maxim's wallet.
The second line of the input contains n integers c1,c2,…,cn ( 1≤ci≤1000 ), where ci is the cost of the i -th game.
The third line of the input contains m integers a1,a2,…,am ( 1≤aj≤1000 ), where aj is the value of the j -th bill from the Maxim's wallet.
输入格式
Print a single integer — the number of games Maxim will buy.
输出格式
The first example is described in the problem statement.
In the second example Maxim cannot buy any game because the value of the first bill in his wallet is smaller than the cost of any game in the shop.
In the third example the values of the bills in Maxim's wallet are large enough to buy any game he encounter until he runs out of bills in his wallet.
输入输出样例
输入#1
5 4 2 4 5 2 4 5 3 4 6
输出#1
3
输入#2
5 2 20 40 50 20 40 19 20
输出#2
0
输入#3
6 4 4 8 15 16 23 42 1000 1000 1000 1000
输出#3
4
说明/提示
The first example is described in the problem statement.
In the second example Maxim cannot buy any game because the value of the first bill in his wallet is smaller than the cost of any game in the shop.
In the third example the values of the bills in Maxim's wallet are large enough to buy any game he encounter until he runs out of bills in his wallet.