hdu2114

Posted 不积跬步无以至千里,不积小流无以成江海

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu2114相关的知识,希望对你有一定的参考价值。

Calculate S(n)

Problem Description
Calculate S(n).

S(n)=13+23 +33 +......+n3 .
 
Input
Each line will contain one integer N(1 < n < 1000000000). Process to end of file.
 
Output
For each case, output the last four dights of S(N) in one line.
 
Sample Input
1 2
 
Sample Output
0001 0009

主要是计算前n项和的公式。

前n项和的立方公式为   : s(n)=(n*(n+1)/2)^2;

 

前n项和的平方公式为:s(n)=n*(n+1)(2*n+1)/6;

 1 #include<cstdio>
 2 #include<iostream>
 3 using namespace std;
 4 int main()
 5 {
 6     long long n,sum,t,i;
 7     sum=0;
 8     while(cin>>n)
 9     {
10         long long sum=(((n%10000)*(n+1)%10000)/2)*(((n%10000)*(n+1)%10000)/2)%10000;
11         printf("%04I64d\n",sum);
12     }
13 }

 

以上是关于hdu2114的主要内容,如果未能解决你的问题,请参考以下文章

HDU - 2114 Calculate S(n)

如何从活动中更改片段中视图的可见性

android在特定片段中隐藏工具栏

HDU4057 Rescue the Rabbit(AC自动机+状压DP)

HDU3247 Resource Archiver(AC自动机+BFS+DP)

通过调用 popBackStackImmediate 返回到 tablayout 中的替换片段时调用哪个方法