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

SPOJ Problem 1724:Counting Triangles

时间:2015-03-06 22:00:24      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

题目大意:数三角形。。

数据范围是一百万,而且暴力不可行,所以要推公式。公式可以参照

http://www.docin.com/p-720073077.html

#include<cstdio>
int t; 
long long n,m,ans;
int main(){
    scanf("%d",&t);
    while(t--){
        scanf("%lld",&n);
        ans=(n*(n+1)*(2*n+1))/6;
        m=(n-1)/2;
        if (n&1)ans-=m*(m+1)*(4*m-1)/6;else ans-=m*(m+1)*(4*m+5)/6;
        printf("%lld\n",ans);
    }
}

 

SPOJ Problem 1724:Counting Triangles

标签:

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

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