반응형 check18 [백준] 3단계 - 1095번 (파이썬) check! 1095번 https://www.acmicpc.net/problem/10951 # 1번째 풀이 while True: try: A,B = list(map(int, input().split())) print(A+B) except: break # 2번째 풀이 try: while True: A,B = list(map(int, input().split())) print(A+B) except: exit() 어려웠다...나중에 다시 풀어보자! (사실 입력부분에 대한 문제 이해가 어려웠던 거고 코드 자체는 어렵진 않음...) cf) 2번째 풀이 참고한 사이트 https://wook-2124.tistory.com/247 2022. 6. 20. [백준] 3단계 - 1110번 (파이썬) check! 1110번 https://www.acmicpc.net/problem/1110 def func(x): if x 2022. 6. 20. 이전 1 2 3 4 5 다음 반응형