본문 바로가기
백준문제/브론즈 4

백준) 4589번 - python

by kiseno 2024. 3. 24.
728x90
반응형
SMALL
result = []
for i in range(int(input())):
    a,b,c = map(int, input().split())
    result.append([a,b,c])

print("Gnomes:")
for i in range(len(result)):
    print("Ordered" if result[i][0] >= result[i][1] >= result[i][2] or result[i][0] <= result[i][1] <= result[i][2] else "Unordered")
728x90
반응형
LIST

'백준문제 > 브론즈 4' 카테고리의 다른 글

백준) 4714번  (0) 2024.03.26
백준) 4695번 - python  (0) 2024.03.25
백준) 4562번 - python  (0) 2024.03.23
백준) 4470번 - python  (0) 2024.03.22
백준) 3046번 - python  (0) 2024.03.21