scientific_comp_projects/CODE/[python]kattis/trivial/solving_for_carrots.py

12 lines
629 B
Python
Raw Permalink Normal View History

2021-10-29 15:16:40 +02:00
'''
Input starts with two integers 1N,P1000 on a single line, denoting the number of contestants in the contest and the number of huffle-puff problems solved in total. Then follow N lines, each consisting of a single non-empty line in which the contestant describes him or herself. You may assume that the contestants are good at describing themselves, in a way such that an arbitrary 5-year-old with hearing problems could understand it.
'''
contestants = input()
contestants, carrots = contestants.split(' ')
contestants = int(contestants)
for n in range(contestants):
descritpiton = input()
print(carrots)