[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]平方和与立方和 [简单 / 坑]的主要内容,如果未能解决你的问题,请参考以下文章

HDU2007 平方和与立方和入门

HDU 2007 平方和与立方和

hdu 2007 平方和与立方和

hdu 2007 平方和与立方和

HDU2007平方和与立方和

HDU-2007-平方和与立方和