A. Petr and Book1000 / 模拟
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Petr and Book1000 / 模拟相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/139/A
#include<bits/stdc++.h>
using namespace std;
const int N=110;
int a[N],s,index;
int main(void)
{
int sum; cin>>sum;
for(int i=1;i<=7;i++)
{
cin>>a[i],s+=a[i];
if(a[i]) index=i;//存一下每周的最后的一次学习是星期几
}
sum-=sum/s*s;
if(sum==0)//说明整除了
{
cout<<index;
return 0;
}
for(int i=1;i<=7;i++)
{
sum-=a[i];
if(sum<=0)
{
cout<<i;
break;
}
}
}
以上是关于A. Petr and Book1000 / 模拟的主要内容,如果未能解决你的问题,请参考以下文章
A. BowWow and the Timetable1000 / 模拟
Codeforces 1082 A. Vasya and Book-题意 (Educational Codeforces Round 55 (Rated for Div. 2))