hdu 2007 平方和与立方和
Posted wz-archer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2007 平方和与立方和相关的知识,希望对你有一定的参考价值。
Problem Description
给定一段连续的整数,求出他们中所有偶数的平方和以及所有奇数的立方和。
Input
输入数据包含多组测试实例,每组测试实例包含一行,由两个整数m和n组成。
Output
对于每组输入数据,输出一行,应包括两个整数x和y,分别表示该段连续的整数中所有偶数的平方和以及所有奇数的立方和。
你可以认为32位整数足以保存结果。
你可以认为32位整数足以保存结果。
Sample Input
1 3
2 5
Sample Output
4 28
20 152
#include <algorithm> #include <iostream> #include <cstring> #include <cstdio> #include <vector> #include <cmath> #include <queue> #include <deque> #include <cmath> #include <map> using namespace std; typedef long long ll; const double inf=1e20; const int maxn=2e5+10; const int mod=1e9+7; ll n,m; ll nnum,mnum; int main(){ while(scanf("%lld%lld",&n,&m)!=EOF){ nnum=mnum=0; if(m<n)swap(n,m); for(int i=n;i<=m;i++){ if(i%2)nnum+=i*i*i; else mnum+=i*i; } printf("%lld %lld ",mnum,nnum); } return 0; }
以上是关于hdu 2007 平方和与立方和的主要内容,如果未能解决你的问题,请参考以下文章