记录编号 163938 评测结果 AAAAAAAAAA
题目名称 [NOIP 1996]砝码称重 最终得分 100
用户昵称 Gravatar啊吧啦吧啦吧 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2015-05-27 10:40:14 内存使用 0.29 MiB
显示代码纯文本
#include <cstdio>
#include <algorithm>
#include <cstdlib>
  
using namespace std;
  
int a, b, c, d, e, f, ans = 0;
bool q[1001] = {0};
  
void Qread(int& x)
{
    x = 0;
    char ch = getchar();
    while(ch < '0' || ch > '9')
        ch = getchar();
    while(ch >= '0' && ch <= '9')
    {
        x *= 10;
        x += ch - '0';
        ch = getchar();
    }
    return;
}
  
int main()
{
	freopen("fmcz.in", "r", stdin);
	freopen("fmcz.out", "w", stdout);
    Qread(a);
    Qread(b);
    Qread(c);
    Qread(d);
    Qread(e);
    Qread(f);
    q[0] = 1;
      
    for(int i = 0; i <= a; i ++)
        for(int k = 0; k <= c; k ++)
            for(int j = 0; j <= b; j ++)
                for(int n = 0; n <= f;n ++)
                    for(int l = 0; l <= d; l ++)
                        for(int m = 0; m <= e; m ++)
                            if(! q[i + 2 * j + 3 * k + 5 * l + m * 10 + 20 * n])
                            {
                                q[i+2*j+3*k+5*l+m*10+20*n]=1;
                                ans ++;
                            }
      
    printf("%d", ans);
    fclose(stdin);
    fclose(stdout);
//  system("pause");
    return 0;                   
}