Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Question by Ibrahim Mesecan.
Buy Three Items
Question:
You have m leke and you want to buy 3 items.
You want to buy the items in order (you will
buy the first item and if you have more money
then you will buy the second one, etc. )
How many items you can buy?
Input specification:
You will be first given 3 integer numbers,
the total amounts of three items (at,bt,ct).
On the next line, the total amount (m)
you have. All the numbers are integers
not greater than 10 million.
Output specification:
Show one number, the number of items
that you can buy.
Sample Input I
70 50 80
160
|
Sample Input II
120 30 50
100
|
Sample Output I
2
|
Sample Output II
0
|
Explanation:
You will buy the items in order. For the first sample,
you have the money to buy the first and
second items (2) but you don't have enough money to
buy the third one. For the second sample, Although
you have enough money to buy the second and third
items, but you are buying the items in order. So,
you don't have enough money to buy the first
one, And thus, you buy no items (0).
Для отправки решений необходимо выполнить вход.
|