1.Link: http://poj.org/problem?id=2109 http://bailian.openjudge.cn/practice/2109/ 2.Content: Power of Cryptography Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 18872 Accepted: 9520 Description Current work in cryptography involves (…
Power of Cryptography Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 26622 Accepted: 13301 Description Current work in cryptography involves (among other things) large prime numbers and computing powers of numbers among these primes.…
点击打开链接 Power of Cryptography Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 16388 Accepted: 8285 Description Current work in cryptography involves (among other things) large prime numbers and computing powers of numbers among these pr…
#include<iostream> #include<stdio.h> #include<math.h> using namespace std; int main() { //freopen("acm.acm","r",stdin); long double num; long double k; while(cin>>num>>k) { cout<<pow(k,1.0/num)<&l…