https://www.acmicpc.net/problem/10951
문제 풀이
- 테스트 케이스 개수를 모르고 입력 받아 합을 구하는 문제이다.
solution - readlines로 input값 끝까지 받는 방법
import sys
test_cases = sys.stdin.readlines()
for test_case in test_cases :
A,B = map(int, test_case.split())
print(A+B)
solution - try-except 사용해 예외처리로 푸는 법
while True:
try:
A,B = map(int, input().split())
print(A+B)
except EOFError:
break
'algorithm > 백준' 카테고리의 다른 글
[PYTHON]4673 셀프넘버 set()/중복제거/차집합/합집합/교집합 (0) | 2023.01.15 |
---|---|
[PYTHON] 10871 X보다 작은 수 list comprehension (0) | 2023.01.14 |
[PYTHON] 25304 영수증 (0) | 2023.01.12 |
[PYTHON] 8393 합 (0) | 2023.01.12 |
[PYTHON] 10950 A+B -3 for_in에서 _의 의미 (0) | 2023.01.12 |
댓글