码迷,mamicode.com
首页 > 其他好文 > 详细

SPOJ Problem 3410:Feynman

时间:2015-03-03 20:28:45      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

水题,求1到n的平方和,直接代公式x=(1/6)*n*(n+1)*(2*n+1)

#include<cstdio>
#include<cstring>
int main(){
    int n,x;
    while(scanf("%d",&x)&&x){
        printf("%d\n",x*(x+1)*(2*x+1)/6);
    }
}

 

SPOJ Problem 3410:Feynman

标签:

原文地址:http://www.cnblogs.com/moris/p/4311844.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!