其他分享
首页 > 其他分享> > Sum is K

Sum is K

作者:互联网

描述:

Given a sequence of N numbers. Find different numbers A and B in the sequence so that the sum of A and B equals to K.

输入:

First line: two positive integers N (N <= 1000) and K (K <= 1000000).
Second line: N positive integers (<= 1000000).

输出:

Two integers A and B.

样例输入:

5 12
2 4 7 3 9

样例输出:

3 9

描述

提供一个n个数字的序列,在序列中找出不同的两个数A和B,使得A+B=K。

输入

第一行:两个正整数N和K

第二行:N个正整数

输出

两个整数A和B

标签:integers,sequence,positive,Sum,样例,numbers,line
来源: https://blog.csdn.net/d22HgH22b/article/details/122594406