记录编号 |
133867 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Nov07] 阅读大赛 |
最终得分 |
100 |
用户昵称 |
雪夜星空 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.019 s |
提交时间 |
2014-10-28 20:56:32 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include <cstdio>
#include <cmath>
#include<iostream>
using namespace std;
int n;
double page,s,t,r;
int main()
{
freopen("read.in","r",stdin);
freopen("read.out","w",stdout);
int page,n;
cin>>page>>n;
for(int i=1;i<=n;i++)
{
cin>>s>>t>>r;
double time=0,tot=page;
while(tot)
{
if(tot!=page) time=time+r;
if(tot>=s*t){
tot=tot-s*t;
time=time+t;
}
else
{
double tots=tot/s;
time=time+tots;
// time=time+tot/s;
tot=0;
}
}
int la=int(time);
if(time-la>0) la++;
cout<<la<<endl;
}
return 0;
}