#Lutece0975. 寻找固定和
寻找固定和
Migrated from Lutece 975 寻找固定和
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
有两个数组与,各有与个元素,而且各个元素没有依顺序排列;是一个已知的值。请写一个程序,看看在与中有没有满足的元素。
Input
本题有多组输入数据。第一行是输入数据的组数,每组数据占三行,第一行是三个用空格隔开的数、和,表示下面两行和数组的元素个数依次为和个,以及固定和。紧接着两行分别是和个元素,每个元素后均有一个空格。,。
Output
对应每组数据,输出可能有多行,如果没有找到,输出为nothing
,如果输出有多行,应先按的下标从小到大输出,若的下标相同,则按的下标从小到大输出。详细可参看样例。
Samples
2
4 4 9
3 7 2 4
2 5 2 3
4 3 15
1 2 3 4
5 8 6
case 1:
x[1]+y[0]=9
x[1]+y[2]=9
x[3]+y[1]=9
case 2:
nothing
Resources
wxiaoping 2009年C语言第九次上机