题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2520
题 意:小菜鸟他从0点出发一开始的飞行速度为1m/s,每过一个单位时间lin2144的飞行速度比上一个单位时间
的飞行速度快2m/s,问n (0 < n < 10^5)个单位时间之后lin2144飞了多远?
思 路:由物理学公式可得S = 1/2*a*t*t;a为加速度2m/s^2。
代码如下:
#include <iostream>
using namespace std;
#include <string.h>
#include <stdio.h>
#include <climits>
#include <algorithm>
#define maxn 65535
typedef __int64 LL;
int main()
{
int T;
scanf ( "%d", &T);
while( T-- )
{
LL n;
scanf ( "%I64d", &n );
printf("%I64d\n",(n%10000)*(n%10000)%10000);
}
return 0;
}