http://acm.hdu.edu.cn/showproblem.php?pid=4104

第一遍看了眼数据,直接输出所有数的和加1,居然过了,不过我相信一切都是有原因的~

View Code
#include <stdio.h>

int main()
{
    int n,s,a,i;
    while(~scanf("%d",&n))
    {
        s=0;
        for(i=0;i<n;i++)
        {
            scanf("%d",&a);
            s+=a;
        }
        printf("%d\n",s+1);
    }
    return 0;
}