比赛 快乐小组互测赛2019-09-27 评测结果 AAAAAAAAAAA
题目名称 猫粮储备 最终得分 100
用户昵称 数声风笛ovo 运行时间 0.005 s
代码语言 C++ 内存使用 13.66 MiB
提交时间 2019-09-23 20:06:53
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int main(){
	freopen("catfood.in","r",stdin);
	freopen("catfood.out","w",stdout);
	int a,b,c,d,e,f;string g;int v=0,tot=0,day=0;
	cin>>g>>a>>b>>c>>d>>e;
	if(g[0]=='i'){
		if(b>d){
			v=(a*b-c*d)/(b-d);
			tot=a*b-v*b;
			day=tot/(e-v);
		}else if(d>b){
			v=(d*c-a*b)/(d-b);
			tot=a*b-v*b;
			day=tot/(e-v);
		}
	}
	if(g[0]=='d'){
		if(b>d){
			v=(a*b-c*d)/(b-d);
			tot=a*b+v*b;
			day=tot/(e+v);
		}else if(d>b){
			v=(d*c-a*b)/(d-b);
			tot=a*b+v*b;
			day=tot/(e+v);
		}
	}
	cout<<day<<endl<<endl;
}