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

2014上海网络赛 HDU 5053 the Sum of Cube

时间:2015-10-25 00:48:57      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 #include<math.h>
 4 #include<iostream>
 5 #define LL long long
 6 using namespace std;
 7 
 8 int main()
 9 {
10     int t;
11     int a,b;
12     int cas;
13     LL sum;
14     while(~scanf("%d",&t))
15     {
16         for(int i=1;i<=t;i++)
17         {
18             sum=0;
19             scanf("%d%d",&a,&b);
20             for(int j=a;j<=b;j++)
21             {
22                 sum+=pow(j,3);
23             }
24             printf("Case #%d: %lld\n",i,sum);
25         }
26     }
27     return 0;
28 }
View Code

 

2014上海网络赛 HDU 5053 the Sum of Cube

标签:

原文地址:http://www.cnblogs.com/ITUPC/p/4908013.html

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