Problem C
Odd Man Out
You are hosting a party with
Input
The first line of input gives the number of cases,
-
One line containing the value
the number of guests. -
One line containing a space-separated list of
integers. Each integer indicates the invitation code of a guest.
You may assume that
Output
For each test case, output one line containing “Case
#
Sample Input 1 | Sample Output 1 |
---|---|
3 3 1 2147483647 2147483647 5 3 4 7 4 3 5 2 10 2 10 5 |
Case #1: 1 Case #2: 7 Case #3: 5 |