记录编号 379385 评测结果 AAAAAAAAAA
题目名称 [NOIP 1996]砝码称重 最终得分 100
用户昵称 GravatarTbnlkegc 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2017-03-06 12:52:12 内存使用 0.31 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
bool fk[1001]={0};
using namespace std;
int main(){
	freopen("fmcz.in","r",stdin);
	freopen("fmcz.out","w",stdout);
	int a,b,c,d,e,f,ans=0;
	cin>>a>>b>>c>>d>>e>>f;
	for(int i=0;i<=a;i++)
	{
		for(int j=0;j<=b;j++)
		{
			for(int k=0;k<=c;k++)
			{
				for(int l=0;l<=d;l++)
				{
					for(int m=0;m<=e;m++)
					{
						for(int n=0;n<=f;n++)
						{
							if(fk[1*i+2*j+3*k+5*l+10*m+20*n]==0)
							{
								ans++;
								fk[1*i+2*j+3*k+5*l+10*m+20*n]=1;
							}
						}
					}
				}
			}
		}
	}
	cout<<ans-1;
	return 0;
}