#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
long long mp[];
double ans[];
void init(){
mp[] = mp[] = ;
for(int i = ; i <= ; i++){
mp[i] = mp[i-]*i;
}
ans[] = 1.0;
ans[] = 2.0;
ans[] = 2.5;
for(int i = ; i <= ; i++){
ans[i] = ans[i-]+1.0/mp[i];
}
}
int main()
{
init();
printf("n e\n- -----------\n");
printf("0 1\n1 2\n2 2.5\n");
for(int i = ; i <= ; i++){
printf("%d %.9lf\n",i,ans[i]);
}
return ;
}
相关文章
- 03-14C 几何水题 求不同斜率的数目 枚举+set
- 03-14Codeforces Round #345(Div. 2)-651A.水题 651B.。。。 651C.去重操作 真是让人头大
- 03-14Codeforces Round #379 (Div. 2) D. Anton and Chess 水题
- 03-14PAT甲级1011水题飘过
- 03-14poj 1326(水题)
- 03-14PAT 1005 Spell It Right 水题
- 03-14PAT甲级1005水题飘过
- 03-14codevs 2277 爱吃皮蛋的小明(水题日常)
- 03-14Codeforces Round #371 (Div. 2) B. Filya and Homework 水题
- 03-14Super Jumping! Jumping! Jumping!(dp 水题)