-Code
for i in range(1, int(input()) + 1):
n = int(input())
if n == 1:
input()
print(f"Case #{i}: 0")
continue
a1, b1 = map(int, input().split())
a2, b2 = map(int, input().split())
print(f"Case #{i}:", end=" ")
print(
1 if (a1 > a2 and b1 < b2) or
(a1 < a2 and b1 > b2) else 0
)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32585번 Building Pyramids (1) | 2024.10.29 |
---|---|
[백준/파이썬] 8387번 Dyslexia (0) | 2024.10.28 |
[백준/파이썬] 22421번 Koto Municipal Subway (0) | 2024.10.26 |
[백준/파이썬] 9971번 The Hardest Problem Ever (0) | 2024.10.25 |
[백준/파이썬] 22341번 사각형 면적 (0) | 2024.10.24 |