자료구조&알고리즘/알고리즘 IO_BOJ #10951: A+B -4 - https://www.acmicpc.net/problem/10951 이 문제에서는 테스트 케이스의 개수를 제시하지 않고 있다. 따라서 에러가 발생하면 반복문이 끝날 수 있도록 try-except 구문을 활용한다. import sys def input(): return sys.stdin.readline().rstrip() while True: try: a, b = map(int, input().split()) print(a+b) except: break 728x90 공유하기 게시글 관리 Reality is also a Pizza '자료구조&알고리즘 > 알고리즘' 카테고리의 다른 글 분할 정복_Leet #241. Different Ways to Add Parentheses (0) 2022.04.14 분할 정복_Leet #169.Majority Element (0) 2022.04.12 Greedy_프로그래머스 #체육복 (0) 2022.04.06 Greedy_BOJ #1343: 폴리오미노 (0) 2022.04.05 IO_BOJ #11718 / 11719: 그대로 출력하기 (0) 2022.03.29 Contents 당신이 좋아할만한 콘텐츠 분할 정복_Leet #169.Majority Element 2022.04.12 Greedy_프로그래머스 #체육복 2022.04.06 Greedy_BOJ #1343: 폴리오미노 2022.04.05 IO_BOJ #11718 / 11719: 그대로 출력하기 2022.03.29 댓글 0 + 이전 댓글 더보기