Canadian Computing Competition: 2012 Stage 2, Day 2, Problem 2
Someone whose name I don't want to remember was reading an article in the newspaper that mentioned the results of a poll. Upon seeing that the percentages that appeared in the article were all
In this problem, your task is to come up with a program that would make a similar analysis. In particular, given the percentages that appear in a newspaper article, it is your task to determine the minimum number of people that must have been interviewed in order for those percentages to be possible, assuming that percentages are rounded to the closest integer, with
Input Specification
The first line of the input file will contain an integer
Output Specification
An integer
Sample Input 1
3
25
50
75
Sample Output 1
4
Sample Input 2
2
33
67
Sample Output 2
3
Comments