Problem C
Closest Sums
Given is a set of integers and then a sequence of queries. A query gives you a number and asks to find a sum of two distinct numbers from the set which is closest to the query number.
Input
Input contains multiple cases. Each case starts with an
integer
Output
Output should be organized as in the sample below. For each query output one line giving the query value and the closest sum in the format as in the sample.
Sample Input 1 | Sample Output 1 |
---|---|
5 3 12 17 33 34 3 1 51 30 3 1 2 3 3 1 2 3 3 1 2 3 3 4 5 6 |
Case 1: Closest sum to 1 is 15. Closest sum to 51 is 51. Closest sum to 30 is 29. Case 2: Closest sum to 1 is 3. Closest sum to 2 is 3. Closest sum to 3 is 3. Case 3: Closest sum to 4 is 4. Closest sum to 5 is 5. Closest sum to 6 is 5. |