Henu ACM Round#16 A Bear and Game

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Henu ACM Round#16 A Bear and Game相关的知识,希望对你有一定的参考价值。

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


看看什么时候t[i]-t[i-1]>15。
输出t[i-1]+15就好。

不存在这样的i就输出min(t[n]+15,90)

【代码】

#include <bits/stdc++.h>
using namespace std;

int n;
int t[100];

int main()
{
    cin >> n;
    for (int i = 1;i <= n;i++)cin>>t[i];
    for (int i = 1;i <= n;i++){
        if (t[i]-t[i-1]>15){
            cout<<t[i-1]+15<<endl;
            return 0;
        }
    }
    cout<<min(90,t[n]+15)<<endl;
    return 0;
}

以上是关于Henu ACM Round#16 A Bear and Game的主要内容,如果未能解决你的问题,请参考以下文章

Henu ACM Round#16 CGraph and String

Henu ACM Round#16 DBear and Two Paths

Henu ACM Round#16 FOm Nom and Necklace

Henu ACM Round#18 A Multiplication Table

Henu ACM Round#19 A Vasya the Hipster

Henu ACM Round#19 FDispute