ГлавнаяСборникиТурнирыРазделыФорумыУчастникиПечатьПомощьО системе

Сборники > Задачи со всего света > задача:


50862 - Sum of the Pairs

Гость
• Вопросы к жюри (4)

Задачи сборника

• 50862 - Sum of the Pairs
• 50904 - Print All Prime Numbers
• 50307 - Palindromes
• 50305 - John's Tasks
• 50315 - Pig Latin
• 50911 - Symmetric Array
• 50296 - Total Discount Rate
• 50935 - Max Discount
• 50851 - Repeated Numbers

Обратная связь

Если у вас есть предложения или пожелания по работе Contester, посетите форум сайта www.contester.ru.

Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб.

Sum of the Pairs

Your math professor is writing a list of unique numbers and is asking you to give him the number of pairs whose sum is equal to X. The professor is very busy now and wants you to do the calculations quickly and to give him the final result.

Question: Given a list of n unique numbers, output the number of pairs whose sum is equal to X.

Input specification:
In the first line you will be given two integers n and X (5 <= n <= 200.000, -100.000 <= X <= 100.000), where n determines the number of integers that the list will contain and X determines the sum which the numbers of each pair should give as their sum when added to each other. In the following line, you will be given n integers (-100.000 <= nr <= 100.000).

Output specification:
Write a single number, the number of pairs whose sum is equal to X.

Sample Input I
5 7
1 2 3 4 5
Sample Input II
10 7
4 6 3 1 7 5 11 -3 2 -1
Sample Output I
2
Sample Output II
3

Explanation 1:
There are two pairs whose sum is equal to 7: (2,5) and (3,4).

Explanation 2:
There are three pairs whose sum is equal to 7: (4,3), (6,1) and (5,2)



Для отправки решений необходимо выполнить вход.

www.contester.ru