POJ 2109 Power of Cryptography (大数开方)

可能很多人被10^100的数据吓到了,不知道怎么上手

其实这题很容易的,double的数据可以达到10^300 啊

另外,a的1/7次方,就是对a求7次根。。

//Memory: 168 KB		
//Time: 0 MS
#include<stdio.h>
#include<math.h>
int main()
{
	double n,p;
	while(scanf("%lf%lf",&n,&p)!=EOF)
	{
		double t=pow(p,1.0/n);
		printf("%.0lf\n",t);
	}
	return 0;
}


你可能感兴趣的:(POJ 2109 Power of Cryptography (大数开方))