CF1041A Heist

原题链接:http://codeforces.com/contest/1041/problem/A

CF1041A Heist

There was an electronic store heist last night.

All keyboards which were in the store yesterday were numbered in ascending order from some integer number x x x. For example, if x = 4 x=4 x=4 and there were 3 3 3 keyboards in the store, then the devices had indices 4 , 5 4, 5 4,5 and 6 6 6, and if
x = 10 x=10 x=10 and there were 7 7 7 of them then the keyboards had indices 10 , 11 , 12 , 13 , 14 , 15 10, 11, 12, 13, 14, 15 10,11,12,13,14,15 and 16 16 16.

After the heist, only n n n keyboards remain, and they have indices a 1 , a 2 , ⋯   , a n a_1,a_2,\cdots,a_n a1,a2,,an. Calculate the minimum possible number of keyboards that have been stolen. The staff remember neither x x x nor the number of keyboards in the store before the heist.

Input

The first line contains single integer n ( 1 ≤ n ≤ 1000 ) n(1≤n≤1000) n(1n1000) — the number of keyboards in the store that remained after the heist.

The second line contains n n n distinct integers a 1 , a 2 , ⋯   , a n ( 1 ≤ a i ≤ 1 0 9 ) a_1,a_2,\cdots,a_n(1≤a_i≤10^9) a1,a2,,an(1ai109) — the indices of the remaining keyboards. The integers a i a_i ai are given in arbitrary order and are pairwise distinct.

Output

Print the minimum possible number of keyboards that have been stolen if the staff remember neither x x x nor the number of keyboards in the store before the heist.

Examples
input

4
10 13 12 8

output

2

input

5
7 5 6 4 8

output

0

Note

In the first example, if x = 8 x=8 x=8 then minimum number of stolen keyboards is equal to 2 2 2. The keyboards with indices 9 9 9 and 11 11 11 were stolen during the heist.

In the second example, if x = 4 x=4 x=4 then nothing was stolen during the heist.

题解

排序强校表示,排一遍序就能A (其实不用)

代码
#include<bits/stdc++.h>
using namespace std;
int a[105],n;
void in(){scanf("%d",&n);for(int i=1;i<=n;++i)scanf("%d",&a[i]);}
void ac(){sort(a+1,a+1+n);printf("%d",a[n]-a[1]+1-n);}
int main(){in();ac();}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ShadyPi

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值