[HDU 2007]平方和与立方和 [简单 / 坑]
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[HDU 2007]平方和与立方和 [简单 / 坑]相关的知识,希望对你有一定的参考价值。
http://acm.hdu.edu.cn/showproblem.php?pid=2007
没有规定 x一定小于 y
#include<cstdio>
#include<string>
#include<cstring>
#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std;
int main(void)
{
int a,b;
while(cin>>a>>b)
{
if(a>b) swap(a,b);
long long int ans1=0,ans2=0;
for(int i=a;i<=b;i++)
{
if(i&1) ans2+=pow(i,3);
else ans1+=pow(i,2);
}
cout<<ans1<<" "<<ans2<<endl;
}
return 0;
}
以上是关于[HDU 2007]平方和与立方和 [简单 / 坑]的主要内容,如果未能解决你的问题,请参考以下文章