1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/challenges/cakes-swerc-2020-2021/solutions/python/function/solution.py

14 lines
446 B
Python

from typing import List
import sys
maximum_number_of_cake_possible = None
next(sys.stdin)
for line in sys.stdin:
quantity_per_cake, quantity_available = list(map(int, line.split(' ')))
cake_possible = quantity_available // quantity_per_cake
if maximum_number_of_cake_possible == None or cake_possible < maximum_number_of_cake_possible:
maximum_number_of_cake_possible = cake_possible
print(maximum_number_of_cake_possible)