记录编号 |
460192 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[hdu]神、上帝以及老天爷 |
最终得分 |
100 |
用户昵称 |
软软糖 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.228 s |
提交时间 |
2017-10-16 17:37:49 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int x;
double de[21];
long long pn(long long x)
{
long long a=1,i;
for(i=1;i<=x;i++)
a*=i;
return a;
}
double der(int x)
{
if (de[x])
return de[x];
if(x==1)
return de[x] = 0;
if(x==2)
return de[x] = 1;
else
return de[x] = (der(x-1)+der(x-2))*(x-1);
}
int main()
{
freopen("hdu2048.in","r",stdin);
freopen("hdu2048.out","w",stdout);
int mpn;
cin>>mpn;
for(int i=1;i<=mpn;i++)
{
cin>>x;
printf("%.2lf%\n",(der(x)*100)/pn(x));
}
return 0;
}