HDOJ_1290_大二写_献给杭电五十周年校庆的礼物

AC代码:

#include <iostream>
#include <cstdio>
using namespace std;
int main(void)
{
    freopen("in.txt","r",stdin);
    int n;
    while(scanf("%d",&n)!=EOF)
    {
        printf("%lld\n",1+(n*n*n+5*n)/6);
    }
    
    fclose(stdin);
    return 0;
}

 

posted @ 2018-11-10 10:34  pha创噬  阅读(81)  评论(0编辑  收藏  举报