赞
踩
问题描述
小明要做一个跑步训练,初始时,小明充满体力,体力值计为 10000。
如果小明跑步,每分钟损耗 600 的体力。
如果小明休息,每分钟增加 300 的体力。
体力的损耗和增加都是 均匀变化的。
小明打算跑一分钟、休息一分钟、再跑一分钟、再休息一分钟……如此循环。
如果某个时刻小明的体力到达 0,他就停止锻炼, 请问小明在多久后停止锻炼。
为了使答案为整数,请以秒为单位输出答案,答案中只填写数,不填写单位。
答案提交
这是一道结果填空题,你只需要算出结果后提交即可。
本题的结果为一个整数,在提交答案时只填写这个整数,填写多余的内容将无法得分。
- #include <stdio.h>
- #include <math.h>
- #include <algorithm>
- #include <iostream>
- #include <string.h>
- #include <queue>
- #include <stack>
- #include <map>
- #include <set>
- #include <vector>
- using namespace std;
- #define ll long long
- int t=10000,ans=0;
- int main() {
- // cout<<3880<<endl;
- // return 0;
- while(t>=300) {
- ans++;
- if(ans%2==0) {
- t+=300;
- } else
- t-=600;
- }
- if(ans%2==1) {
- t+=300;
- ans++;
- if(t>=600) {
- t-=600;
- ans++;
- t+=300;
- ans++;
- }
- }
- ans=ans*60;
- while(t) {
- t-=10;
- ans++;
- }
- cout<<ans<<endl;
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。