记录编号 590577 评测结果 WWWWWWWWWWWWWWWWWWWW
题目名称 [NOIP 2016PJ]买铅笔 最终得分 0
用户昵称 Gravatar废物 是否通过 未通过
代码语言 C++ 运行时间 0.060 s
提交时间 2024-07-10 15:34:59 内存使用 3.33 MiB
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int main()
{
	freopen("pencil.in","r",stdin);
	freopen("pencil.out","w",stdout);
	long long n,x,y,d;
	cin>>n;
	for(int i=1;i<=3;i++)
	{
		cin>>x>>y;
		if(n%x==0){
			if(n/x*y<d){
				d=n/x*y;
			}
		}else{
			if((n/x+1)*y<d){
				d=(n/x+1)*y;
			}
		}
	}
	cout<<d;
	return 0;
	}