반응형
시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 | 128 MB | 17334 | 9033 | 8357 | 53.619% |
문제
두 양의 정수가 주어졌을 때, 첫 번째 수가 두 번째 수보다 큰지 구하는 프로그램을 작성하시오.
입력
입력은 여러 개의 테스트 케이스로 이루어져 있다. 각 테스트 케이스는 한 줄로 이루어져 있으며, 두 정수가 주어진다. 두 수는 백만보다 작거나 같은 양의 정수이다. 입력의 마지막 줄에는 0이 두 개 주어진다.
출력
각 테스트 케이스마다, 첫 번째 수가 두 번째 수보다 크면 Yes를, 아니면 No를 한 줄에 하나씩 출력한다.
예제 입력 1 복사
1 19
4 4
23 14
0 0
예제 출력 1 복사
No
No
Yes
더보기
# 1차 입력값 처리
def chkInput():
chkZero = False
userInputList = []
listIndex = 0
# 0, 0 이 나올 때 까지 사용자 입력값을 받음
while not chkZero :
userInputList.append(list(map(int, input().split())))
if max(userInputList[listIndex]) == 0:
chkZero = True
continue
else:
listIndex += 1
# 케이스 반복 횟수 체크
for testCase in userInputList:
caseLength = len(testCase)
# 입력값이 두개가 아닐 때
if caseLength != 2:
raise Exception('입력값이 2개가 아닙니다.')
if not (0 <= testCase[0] <= 1000000) or not (0 <= testCase[1] <= 1000000):
raise Exception('입력값의 범위가 잘못되었습니다.')
userInputList.pop() # 마지막 요소 제거
return userInputList
# 결과값 계산
def calOutput(testCaseList=None):
funcResultList = []
for index in range(0, len(testCaseList)):
if testCaseList[index][0] > testCaseList[index][1]:
funcResultList.append("Yes")
else:
funcResultList.append("No")
return funcResultList
try:
userInputList = chkInput()
resultList = calOutput(userInputList)
for index in resultList:
print(index)
except Exception as e:
print(e)
반응형
'IT > Programming' 카테고리의 다른 글
[백준, Python] 2476번 주사위 게임 (0) | 2022.08.17 |
---|---|
[백준, Python] 3009번 네 번째 점 (0) | 2022.08.17 |
[백준, Python] 10156번 과자 (0) | 2022.07.22 |
[백준, Python] 1934번 최소공배수 (0) | 2022.07.22 |
[백준, Python] 2480번 주사위 세개 (0) | 2022.07.22 |