문제 바로가기> 백준 4880번: 다음수
간단한 사칙연산을 이용한 구현이다.
def solution():
import sys
input = sys.stdin.readline
while(True):
a1, a2, a3 = map(int, input().split())
if a1==0 and a2==0 and a3==0: break
if a2-a1 == a3-a2: print("AP", a3+(a2-a1))
else: print("GP", a3*(a2//a1))
solution()