codeforces 839A

Posted

tags:

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

水题  题意 分糖果  每次最多8个  多出来的可以遗留到下一天

注意下一天少于8个要清0;

代码:

#include<bits/stdc++.h>
using namespace std;
int n,k;
int q,b,ok;
int a;
long long sum;
int main()
{

cin>>n>>k;
ok=0;
b=0;
sum=0;
for(int i=1;i<=n;i++)
{
cin>>a;
if((a+b)>=8)
{
sum += 8;
b=b+a-8;
}
else
{
sum+=(a+b);
b=0;
}
if(sum >= k)
{
q=i;
ok=1;
break;
}
}
if(ok)cout<<q<<endl;
else cout<<"-1"<<endl;

}

以上是关于codeforces 839A的主要内容,如果未能解决你的问题,请参考以下文章

codeforces 839A

Codeforces_839

CodeForces 839B Game of the Rows

Codeforces 839A Arya and Bran

codeforce 839A Arya and Bran(水题)

Codeforces 839B - Game of the Rows