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

hdu 5053 水

时间:2014-09-28 20:08:56      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:http   io   os   for   sp   on   c   amp   r   

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

ll就不超范围

写一道BFS题写的烦了 来水一道

//#pragma comment(linker, "/STACK:102400000,102400000")
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <string>
#include <iostream>
#include <iomanip>
#include <cmath>
#include <map>
#include <set>
#include <queue>
using namespace std;

#define ls(rt) rt*2
#define rs(rt) rt*2+1
#define ll long long
#define ull unsigned long long
#define rep(i,s,e) for(int i=s;i<e;i++)
#define repe(i,s,e) for(int i=s;i<=e;i++)
#define CL(a,b) memset(a,b,sizeof(a))
#define IN(s) freopen(s,"r",stdin)
#define OUT(s) freopen(s,"w",stdout)
const ll ll_INF = ((ull)(-1))>>1;
const double EPS = 1e-8;
const double pi = acos(-1.0);
const int INF = 100000000;

int main()
{
    int ncase;
    ll ans;
    scanf("%d",&ncase);
    int ic=0;
    while(ncase--)
    {
        ans=0;
        ll l,r;
        scanf("%I64d%I64d",&l,&r);
        for(ll i=l;i<=r;i++)
            ans+=i*i*i;
        printf("Case #%d: %I64d\n",++ic,ans);
    }
    return 0;
}


hdu 5053 水

标签:http   io   os   for   sp   on   c   amp   r   

原文地址:http://blog.csdn.net/u011026968/article/details/39644495

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