F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Cryptography Reloaded

Time Limit: 5000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 857    Accepted Submission(s): 287


Problem Description
What do researchers working at ICPC (Institute for Cryptographic Programming and Computing) do for fun? Well, as you probably have expected, in addition to solving algorithm-related problems on online judges, they also like to toy with various cryptographic schemes. Recently one of the researchers, Tom, has become interested in RSA algorithm implementations used in handheld devices.
Note that the description of the general RSA algorithm is as follows:
1) Choose two distinct prime numbers p and q, and let n = pq;
2) Choose an integer e such that gcd(e , (p-1)(q-1)) = 1;
3) Compute the integer d that satisfies the congruence relation
.
de ¡Ô 1 (mod (p-1)(q-1))
Then, if person A wants to give person B a way to send an encrypted message to him, A can follow the above steps and release (n, e) as his public key. Upon receiving A¡¯s public key, B can simply encrypt message x (0 ¡Ü x < n) by computing y ¡Ô xe mod n . This would result in a message which ideally only A could decrypt with his private key d: x ¡Ô yd mod n .
As the computation power of handheld devices is usually limited, a relatively
small e is usually used to encrypt data. However this can lead to great security risks.
For example, it is quite simple to recover p and q (i.e., factor n) when you have both the public key (n, e) and the private key d. Could you help Tom write a program to demonstrate this?
 

Input
There are multiple test cases in the input file.
Each test case contains three integers, n, d, and e (n ¡Ü 10100 , 3 ¡Ü e ¡Ü 31 ). All three integers are given without any preceding zeros. It is guaranteed that all numbers satisfy the condition as given in the problem statement.
Two successive test cases are separated by a blank line. A case with n = 0, d = 0 and e = 0 indicates the end of the input file, and should not be processed by your program.
 

Output
For each test case, please print two prime numbers, p and q, such that n = pq and p < q, in the format as illustrated below.
 

Sample Input
55 27 3 290203 168101 5 0 0 0
 

Sample Output
Case #1: 5 11 Case #2: 29 10007
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-04-20 22:28:34, Gzip enabled