CF1041A.Heist

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 xx . For example, if x=4x = 4 and there were 33 keyboards in the store, then the devices had indices 44 , 55 and 66 , and if x=10x = 10 and there were 77 of them then the keyboards had indices 1010 , 1111 , 1212 , 1313 , 1414 , 1515 and 1616 .

After the heist, only nn keyboards remain, and they have indices a1,a2,,ana_1, a_2, \dots, a_n . Calculate the minimum possible number of keyboards that have been stolen. The staff remember neither xx nor the number of keyboards in the store before the heist.

输入格式

The first line contains single integer nn (1n1000)(1 \le n \le 1\,000) — the number of keyboards in the store that remained after the heist.

The second line contains nn distinct integers a1,a2,,ana_1, a_2, \dots, a_n (1ai109)(1 \le a_i \le 10^{9}) — the indices of the remaining keyboards. The integers aia_i are given in arbitrary order and are pairwise distinct.

输出格式

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

输入输出样例

  • 输入#1

    4
    10 13 12 8
    

    输出#1

    2
    
  • 输入#2

    5
    7 5 6 4 8
    

    输出#2

    0
    

说明/提示

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

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

首页