#Lutece0351. Nth Largest Value
Nth Largest Value
Migrated from Lutece 351 Nth Largest Value
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
For this problem, you will write a program that prints the Nth largest value in a fixed sized array of integers. To make things simple, will be and the array will always be have decimal integer values.
Input
The first line of input contains a single integer , (), which is the number of data sets that follow. Each data set consists of a single line containing the data set number, followed by a space,followed by space separated decimal integers whose values are between and inclusive.
Output
For each data set, generate one line of output with the following values: The data set number as a decimal integer, a space, and the largest value of the corresponding integers.
Samples
4
1 1 2 3 4 5 6 7 8 9 1000
2 338 304 619 95 343 496 489 116 98 127
3 931 240 986 894 826 640 965 833 136 138
4 940 955 364 188 133 254 501 122 768 408
1 8
2 489
3 931
4 768
Resources
Greater New York 2009