您的位置:首页 > 其它

CodeForces 673A Bear and Game

2016-05-10 19:39 447 查看
思路:水题

#include<bits\stdc++.h>
using namespace std;
const int maxn = 1e5+6;
int vis[100];
int main()
{
int n;
scanf("%d",&n);
for (int i = 1;i<=n;i++)
{
int temp;
scanf("%d",&temp);
vis[temp]=1;
}
int now=0;
int sum=0;
for (int i = 1;i<=90;i++)
{
sum++;
if(vis[i])
now=0;
else
now++;
if(now==15)
break;
}
printf("%d\n",sum);
}


Description

Bear Limak likes watching sports on TV. He is going to watch a game today. The game lasts 90 minutes and there are no breaks.

Each minute can be either interesting or boring. If 15 consecutive minutes are boring then Limak immediately turns TV off.

You know that there will be n interesting minutes t1, t2, ..., tn.
Your task is to calculate for how many minutes Limak will watch the game.

Input

The first line of the input contains one integer n (1 ≤ n ≤ 90) — the number of interesting minutes.

The second line contains n integers t1, t2, ..., tn (1 ≤ t1 < t2 < ... tn ≤ 90),
given in the increasing order.

Output

Print the number of minutes Limak will watch the game.

Sample Input

Input
3
7 20 88


Output
35


Input
9
16 20 30 40 50 60 70 80 90


Output
15


Input
9
15 20 30 40 50 60 70 80 90


Output
90
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: