ACPC10A - What’s Next

According to Wikipedia, an arithmetic progression (AP) is a sequence of numbers such that the difference of any two successive members of the sequence is a constant. For instance, the sequence 3, 5, 7, 9, 11, 13 ... is an arithmetic progression with common difference 2. For this problem, we will limit ourselves to arithmetic progression whose common difference is a non-zero integer.

On the other hand, a geometric progression (GP) is a sequence of numbers where each term after the first is found by multiplying the previous one by a fixed non-zero number called the common ratio. For example, the sequence 2, 6, 18, 54 ... is a geometric progression with common ratio 3. For this problem, we will limit ourselves to geometric progression whose common ratio is a non-zero integer.

Given three successive members of a sequence, you need to determine the type of the progression and the next successive member.

Input

Your program will be tested on one or more test cases. Each case is specified on a single line with three integers (−10, 000 < a1, a2, a3 < 10, 000) where a1, a2, and a3 are distinct.

The last case is followed by a line with three zeros.

Output

For each test case, you program must print a single line of the form:
XX v
where XX is either AP or GP depending if the given progression is an Arithmetic or Geometric Progression. v is the next member of the given sequence. All input cases are guaranteed to be either an arithmetic or geometric progressions.

Example

Input:
4 7 10
2 6 18
0 0 0

Output:
AP 13
GP 54

Added by:Omar ElAzazy
Date:2010-11-30
Time limit:1.799s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:ACPC 2010

hide comments
2012-04-21 13:00:38 hulk
no typical test cases such a simple problem ....and also .1 credit..!!!
2012-03-22 23:29:26 bristy
key test cases:
0 2 4
AP 6
2012-03-22 02:19:04 Muhammad Al Anwari Lubis
simple =="v
2012-03-07 13:27:34 Shubham
1 2 4 is the key test case

Last edit: 2012-03-07 13:27:52
2012-02-04 21:03:00 Daksh Talwar
Any special case or what ?
Its seemingly so simple , yet gives me WA.
2012-01-15 20:55:30 Better late than never !!!
@Sarih It's specifically mentioned that the entered no. r either ap or gp.... So the case 6 2 9 doesnt exist at all!!!!
2011-12-19 14:45:37 张翼德
oh shit!!.. its so tough... couldn't make it even after 19th attempt!!!
2011-12-14 07:57:55 Didika Kata
tell me more . . i get WA
2011-11-29 09:21:10 victor
getting TLE o_0

Update: got AC at last...

Last edit: 2011-11-29 09:26:10
2011-11-18 15:03:47 Avetik
are there any special cases??
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.