백준 4880번: 다음수

danbibibi·2021년 11월 15일
0

문제

문제 바로가기> 백준 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()
profile
블로그 이전) https://danbibibi.tistory.com

0개의 댓글