본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 32777번 가희와 서울 지하철 2호선

by 현장 2024. 12. 8.

- Code

def solution(n1, n2):
    out = (n1 - n2 + 43) % 43
    inner = (n2 - n1 + 43) % 43

    if out > inner:
        return "Inner circle line"
    return "Outer circle line"


for _ in range(int(input())):
    a, b = map(int, input().split())
    print(solution(a, b))