728x90
https://www.acmicpc.net/problem/14910
inp = list(map(int, input().split()))
if len(inp) == 1:
print("Good")
else:
cnt = inp[0]
result = 0
for i in range(1,len(inp)):
if inp[i] < cnt:
print("Bad")
result = 1
break
cnt = inp[i]
if result == 0:
print("Good")
반응형
'전.py' 카테고리의 다른 글
백준 11721 열 개씩 끊어 출력하기 (0) | 2020.12.10 |
---|---|
백준 14582 오늘도 졌다 (0) | 2020.12.10 |
백준 15596 정수 N개의 합 (0) | 2020.12.10 |
백준 15734 명장 남정훈 (0) | 2020.12.09 |
백준 16171 나는 친구가 적다 (Small) (0) | 2020.12.09 |