302108: CF401A. Vanya and Cards

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Vanya and Cards

题意翻译

Vanya 现在有 $n$ 张牌,每张牌上有一个点数 $a_i$,其中 $|a_i|\le x$。求至少要再增加几张牌,牌的点数由你决定,才能使 Vanya 所有牌的点数之和 $=0$。 $1\le n,x\le 10^3$

题目描述

Vanya loves playing. He even has a special set of cards to play with. Each card has a single integer. The number on the card can be positive, negative and can even be equal to zero. The only limit is, the number on each card doesn't exceed $ x $ in the absolute value. Natasha doesn't like when Vanya spends a long time playing, so she hid all of his cards. Vanya became sad and started looking for the cards but he only found $ n $ of them. Vanya loves the balance, so he wants the sum of all numbers on found cards equal to zero. On the other hand, he got very tired of looking for cards. Help the boy and say what is the minimum number of cards does he need to find to make the sum equal to zero? You can assume that initially Vanya had infinitely many cards with each integer number from $ -x $ to $ x $ .

输入输出格式

输入格式


The first line contains two integers: $ n $ $ (1<=n<=1000) $ — the number of found cards and $ x $ $ (1<=x<=1000) $ — the maximum absolute value of the number on a card. The second line contains $ n $ space-separated integers — the numbers on found cards. It is guaranteed that the numbers do not exceed $ x $ in their absolute value.

输出格式


Print a single number — the answer to the problem.

输入输出样例

输入样例 #1

3 2
-1 1 2

输出样例 #1

1

输入样例 #2

2 3
-2 -2

输出样例 #2

2

说明

In the first sample, Vanya needs to find a single card with number -2. In the second sample, Vanya needs to find two cards with number 2. He can't find a single card with the required number as the numbers on the lost cards do not exceed 3 in their absolute value.

Input

题意翻译

Vanya 现在有 $n$ 张牌,每张牌上有一个点数 $a_i$,其中 $|a_i|\le x$。求至少要再增加几张牌,牌的点数由你决定,才能使 Vanya 所有牌的点数之和 $=0$。 $1\le n,x\le 10^3$

加入题单

算法标签: