标签:des style blog class code java
Time Limit: 1000MS | Memory Limit: 30000K | |
Total Submissions: 17912 | Accepted: 9034 |
Description
Input
Output
Sample Input
2 16 3 27 7 4357186184021382204544
Sample Output
4 3 1234
Source
类型 长度
(bit) 有效数字 绝对值范围
float 32 6~7 10^(-37)
~
10^38
double 64 15~16 10^(-307)
~10^308
long double
128 18~19 10^(-4931)
~ 10 ^ 4932
可以一步算出结果,如果多步会丢失精度:
1 //180K 0MS C++ 195B 2014-05-08 13:47:15 2 #include<stdio.h> 3 #include<math.h> 4 int main(void) 5 { 6 int n; 7 double p; 8 while(scanf("%d%lf",&n,&p)!=EOF) 9 { 10 printf("%.0lf\n",pow(p,1.0/n)); 11 } 12 return 0; 13 }
写了二分法的不过应该是处理不够好,没过就不贴了。
poj 2109 Power of Cryptography,布布扣,bubuko.com
poj 2109 Power of Cryptography
标签:des style blog class code java
原文地址:http://www.cnblogs.com/GO-NO-1/p/3716048.html