2010年9月16日 星期四

ACM 113 - Power of Cryptography

#include <stdio.h>
#include <math.h>

int main()
{
double n, p, k;
while (scanf("%lf %lf", &n, &p) == 2) {
k = exp( log(p) / n);
printf("%.0lf\n", k);
}
return 0;
}

回目錄
回首頁

沒有留言 :

張貼留言

Related Posts Plugin for WordPress, Blogger...