2388. What's next?

2388. What's next?

Constraints

Time Limit: 1 secs, Memory Limit: 256 MB

Description

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, anda3 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. 

Sample Input

4 7 10 

2 6 18 

0 0 0

Sample Output

AP 13 

GP 54

Problem Source

每周一赛第三场

// Problem#: 2388

// Submission#: 1986049

// The source code is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License

// URI: http://creativecommons.org/licenses/by-nc-sa/3.0/

// All Copyright reserved by Informatic Lab of Sun Yat-sen University

#include<iostream>

#include<cstring>

using namespace std;

int main(){

    int a,b,c;

    cin>>a>>b>>c;

    while(a!=0 || b!=0 || c!=0){

        if((b-a)==(c-b)){

            cout<<"AP "<<2*c-b<<endl;

        }

        else if((b/a)==(c/b)){

            cout<<"GP "<<c*c/b<<endl;

        }

        cin>>a>>b>>c;

    }

    return 0;

}      

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值