[알각코] 백준 10951번 - A+B - 4

백준 10951번

i = 5

temp = []

while i > 0:
    inputStr = input()
    num = [int(x) for x in inputStr.split(' ')]
    A = num[0]
    B = num[1]
    temp.append(A+B)
    i -= 1

print('\n'.join([str(x) for x in temp]))

Screen Shot 2021-07-26 at 3 16 19 PM

while True:
    try:
        A, B = map(int, input().split())
        print(A+B)
    except:
        break

python에서 map 함수를 사용하는 방법

  • list(map(함수, 리스트))

Screen Shot 2021-07-26 at 3 52 29 PM

코드 길이가 매우 짧아져서 속도도 올랐다.

참고