ACPC10A - What’s Next

no tags 

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

hide comments
sourav: 2014-02-02 05:55:00

check whether AP or not and question is solved.

dpdrmj: 2014-01-30 13:19:40

@swag33r It is given in the problem that common ratio is integer,so this test case isn't possible.

swag33r: 2014-01-09 21:07:38

for test cases like 4 2 1
ans is .5

Gaurav Anand: 2014-01-01 17:30:42

@saurabh singh rana.. oh really.?

Saurabh Singh Rana: 2014-01-01 15:51:45

you have to run the program infinitely and terminate when all are same.

Praneeth : 2013-12-19 06:20:08

hey in first attempt only AC:)

Bhavik: 2013-12-11 10:48:52

does not deserve to be in classical

Last edit: 2013-12-11 10:49:27
Satyam Kumar Shivam: 2013-12-03 17:38:54

hehe AC in 1st attempt .. :D

Rahul Jain: 2013-11-09 10:46:36

no level at all

Augusto: 2013-10-28 19:26:45

AC on first!!!


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